We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b509462 commit badd250Copy full SHA for badd250
tests/console/sssd_389ds_functional.pm
@@ -28,6 +28,10 @@ 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 $conf_path = '/etc/sssd/sssd.conf';
33
+ my $output = script_output("ls -l $conf_path 2>&1 || echo 'MISSING'");
34
+ die 'bsc#1259250 - sssd.conf is missing after installation' if ($output =~ /MISSING|No such file/);
35
systemctl("enable --now $container_engine") if ($container_engine eq "docker");
36
return $container_engine;
37
}
0 commit comments