We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b755c0b commit 971c44dCopy full SHA for 971c44d
iptc/xtables.py
@@ -817,7 +817,7 @@ class xtables_target(ct.Union):
817
for ldconfig_out_line in ldconfig_out.splitlines():
818
ldconfig_path_regex_match = ldconfig_path_regex.match(ldconfig_out_line)
819
if ldconfig_path_regex_match is not None:
820
- ldconfig_path = ldconfig_path_regex_match.group(1)
+ ldconfig_path = os.path.join(ldconfig_path_regex_match.group(1), 'xtables')
821
if os.path.isdir(ldconfig_path):
822
_xtables_libdir = ldconfig_path
823
break
0 commit comments