Call boot_decrypt
properly (function not method)
Noticed in e.g. https://openqa.fedoraproject.org/tests/58798 we're doing this wrong, `boot_decrypt` was moved into utils as a function, but we were still calling it as a method...
This commit is contained in:
parent
672dd40738
commit
602a1ee101
@ -9,7 +9,7 @@ sub run {
|
||||
# process to run
|
||||
$wait_time = 6000 if (get_var("UPGRADE"));
|
||||
# decrypt disks during boot
|
||||
$self->boot_decrypt($wait_time);
|
||||
boot_decrypt($wait_time);
|
||||
}
|
||||
|
||||
sub test_flags {
|
||||
|
@ -7,7 +7,7 @@ sub run {
|
||||
my $self = shift;
|
||||
# decrypt disks during boot if necessary
|
||||
if (get_var("ENCRYPT_PASSWORD")) {
|
||||
$self->boot_decrypt(60);
|
||||
boot_decrypt(60);
|
||||
}
|
||||
|
||||
boot_to_login_screen;
|
||||
@ -22,7 +22,7 @@ sub run {
|
||||
|
||||
# decrypt if necessary
|
||||
if (get_var("ENCRYPT_PASSWORD")) {
|
||||
$self->boot_decrypt(60);
|
||||
boot_decrypt(60);
|
||||
}
|
||||
|
||||
boot_to_login_screen;
|
||||
|
@ -24,7 +24,7 @@ sub run {
|
||||
# fail immediately if we see a DNF error message
|
||||
die "DNF reported failure" if (check_screen "upgrade_fail", 15);
|
||||
if (get_var("ENCRYPT_PASSWORD")) {
|
||||
$self->boot_decrypt(60);
|
||||
boot_decrypt(60);
|
||||
}
|
||||
# in encrypted case we need to wait a bit so postinstall test
|
||||
# doesn't bogus match on the encryption prompt we just completed
|
||||
|
Loading…
Reference in New Issue
Block a user