Correct previous commit
Should be if, not unless...damn exit codes. Signed-off-by: Adam Williamson <awilliam@redhat.com>
This commit is contained in:
parent
3817e7128d
commit
a479774026
@ -78,7 +78,7 @@ sub run {
|
|||||||
# so no rolekit. First install the necessary packages
|
# so no rolekit. First install the necessary packages
|
||||||
assert_script_run "dnf -y groupinstall freeipa-server", 600;
|
assert_script_run "dnf -y groupinstall freeipa-server", 600;
|
||||||
# FIXME workaround RHBZ#1606541 until it's fixed
|
# FIXME workaround RHBZ#1606541 until it's fixed
|
||||||
unless (script_run "ls -l /usr/sbin/setup-ds.pl") {
|
if (script_run "ls -l /usr/sbin/setup-ds.pl") {
|
||||||
record_soft_failure "389-ds-base-legacy-tools missing - #1606541";
|
record_soft_failure "389-ds-base-legacy-tools missing - #1606541";
|
||||||
assert_script_run "dnf -y install 389-ds-base-legacy-tools", 180;
|
assert_script_run "dnf -y install 389-ds-base-legacy-tools", 180;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user