Try and fix root password setting for ostree installs

This is kind of a pain. I hope this works...

Signed-off-by: Adam Williamson <awilliam@redhat.com>
This commit is contained in:
Adam Williamson 2019-06-28 12:53:33 -07:00
parent 604a476295
commit 5bb9f26b5f
1 changed files with 6 additions and 1 deletions

View File

@ -132,7 +132,12 @@ sub run {
assert_script_run "chroot /mnt/sysimage abrt-auto-reporting 1";
}
if (grep {$_ eq 'rootpw'} @actions) {
assert_script_run "echo 'root:$root_password' | chpasswd -R /mnt/sysimage";
my $mount = "/mnt/sysimage";
if (get_var("CANNED")) {
# finding the actual host system root is fun for ostree...
$mount = "/mnt/sysimage/ostree/deploy/fedora/deploy/*.?";
}
assert_script_run "echo 'root:$root_password' | chpasswd -R $mount";
}
type_string "reboot\n" if (grep {$_ eq 'reboot'} @actions);
}