mirror of
https://github.com/rocky-linux/os-autoinst-distri-rocky.git
synced 2024-11-25 22:46:27 +00:00
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:
parent
604a476295
commit
5bb9f26b5f
@ -132,7 +132,12 @@ sub run {
|
|||||||
assert_script_run "chroot /mnt/sysimage abrt-auto-reporting 1";
|
assert_script_run "chroot /mnt/sysimage abrt-auto-reporting 1";
|
||||||
}
|
}
|
||||||
if (grep {$_ eq 'rootpw'} @actions) {
|
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);
|
type_string "reboot\n" if (grep {$_ eq 'reboot'} @actions);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user