Don't setenforce before chpasswd for root

This shouldn't be needed any more (the referenced bug was fixed
in F28) and doesn't work in non-live installer.

Signed-off-by: Adam Williamson <awilliam@redhat.com>
This commit is contained in:
Adam Williamson 2019-06-28 12:09:14 -07:00
parent c0bad87836
commit 604a476295
1 changed files with 0 additions and 2 deletions

View File

@ -132,8 +132,6 @@ sub run {
assert_script_run "chroot /mnt/sysimage abrt-auto-reporting 1";
}
if (grep {$_ eq 'rootpw'} @actions) {
# https://bugzilla.redhat.com/show_bug.cgi?id=1553957
assert_script_run "setenforce 0";
assert_script_run "echo 'root:$root_password' | chpasswd -R /mnt/sysimage";
}
type_string "reboot\n" if (grep {$_ eq 'reboot'} @actions);