os-autoinst-distri-rocky/tests/disk_guided_encrypted_postinstall.pm

23 lines
541 B
Perl
Raw Normal View History

use base "installedtest";
2015-02-04 16:16:21 +00:00
use strict;
use testapi;
sub run {
# decrypt disks during boot
2015-02-04 16:16:21 +00:00
assert_screen "boot_enter_passphrase", 300; #
type_string get_var("ENCRYPT_PASSWORD");
send_key "ret";
}
sub test_flags {
# without anything - rollback to 'lastgood' snapshot if failed
# 'fatal' - whole test suite is in danger if this fails
# 'milestone' - after this test succeeds, update 'lastgood'
# 'important' - if this fails, set the overall state to 'fail'
return { fatal => 1 };
}
1;
# vim: set sw=4 et: