2024-07-05 15:23:51 +00:00
|
|
|
use base "installedtest";
|
|
|
|
use strict;
|
|
|
|
use testapi;
|
|
|
|
use utils;
|
|
|
|
|
|
|
|
sub run {
|
|
|
|
my $self = shift;
|
|
|
|
if (not(check_screen "root_console", 0)) {
|
|
|
|
$self->root_console(tty => 4);
|
|
|
|
}
|
|
|
|
script_run 'efibootmgr';
|
|
|
|
# now try deleting the "rocky" boot entry and rebooting, to check the fallback path
|
2024-07-06 07:51:47 +00:00
|
|
|
assert_script_run('efibootmgr -b $(efibootmgr | grep -i rocky | cut -f1 | sed -e "s,[^0-9],,g") -B');
|
2024-07-05 15:23:51 +00:00
|
|
|
# check that worked
|
|
|
|
validate_script_output('efibootmgr', sub { $_ !~ m/.*rocky.*/s });
|
|
|
|
type_string("reboot\n");
|
|
|
|
boot_to_login_screen;
|
|
|
|
$self->root_console(tty => 3);
|
|
|
|
# rocky entry should have been recreated
|
|
|
|
validate_script_output('efibootmgr', sub { m/rocky/ });
|
|
|
|
# SB should still be enabled
|
|
|
|
validate_script_output('mokutil --sb-state', sub { m/SecureBoot enabled/ });
|
|
|
|
}
|
|
|
|
|
|
|
|
sub test_flags {
|
|
|
|
return {fatal => 1};
|
|
|
|
}
|
|
|
|
|
|
|
|
1;
|