We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b509462 commit db5c9adCopy full SHA for db5c9ad
tests/console/sssd_389ds_functional.pm
@@ -28,6 +28,9 @@ no warnings 'experimental::signatures';
28
sub install_dependencies($container_engine) {
29
zypper_call("in sudo nscd") unless (is_tumbleweed || is_sle('>=16'));
30
install_package("sssd sssd-ldap openldap2-client sshpass $container_engine", trup_reboot => 1);
31
+ record_info('bsc#1259250', 'Checking if sssd.conf is present after fresh install');
32
+ my $sssd_path = (is_sle('<16.0') ? "/etc/sssd/sssd.conf" : "/usr/etc/sssd/sssd.conf");
33
+ assert_script_run("test -f $sssd_path", fail_message => "bsc#1259250 sssd.conf is not present after fresh install");
34
systemctl("enable --now $container_engine") if ($container_engine eq "docker");
35
return $container_engine;
36
}
0 commit comments