File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed
sssd_test_framework/hosts Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -57,6 +57,13 @@ def features(self) -> dict[str, bool]:
57
57
# enumerate (bool) Feature is only supported for domains with id_provider = ldap or id_provider = proxy.
58
58
MANWIDTH=10000 man sssd.conf | grep -q "id_provider = ldap or id_provider = proxy" && \
59
59
echo "limited_enumeration" || :
60
+ # ip -6 addr show scope global | grep -q "inet6 " and [ -f "/usr/lib64/sssd/libsss_files.so" ] && echo "ipv6" || :
61
+ # Check if BEAKER_RECIPE_ID environment variable is set
62
+ if [ -n "${BEAKER_RECIPE_ID}" ]; then
63
+ if ip -6 addr show scope global | grep -q "inet6 "; then
64
+ echo "ipv6"
65
+ fi
66
+ fi
60
67
""" ,
61
68
log_level = ProcessLogLevel .Error ,
62
69
)
@@ -69,6 +76,7 @@ def features(self) -> dict[str, bool]:
69
76
"ldap_use_ppolicy" : False ,
70
77
"knownhosts" : False ,
71
78
"limited_enumeration" : False ,
79
+ "ipv6" : False ,
72
80
}
73
81
74
82
self ._features .update ({k : True for k in result .stdout_lines })
You can’t perform that action at this time.
0 commit comments