1
0
mirror of https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git synced 2024-09-06 16:47:27 +00:00
os-autoinst-distri-fedora/tests/disk_guided_encrypted_postinstall.pm

23 lines
393 B
Perl
Raw Normal View History

use base "installedtest";
2015-02-04 16:16:21 +00:00
use strict;
use testapi;
use utils;
2015-02-04 16:16:21 +00:00
sub run {
my $self = shift;
my $wait_time = 300;
# if we're running an upgrade, we must wait for the entire upgrade
# process to run
$wait_time = 6000 if (get_var("UPGRADE"));
# decrypt disks during boot
boot_decrypt($wait_time);
2015-02-04 16:16:21 +00:00
}
sub test_flags {
return {fatal => 1};
2015-02-04 16:16:21 +00:00
}
1;
# vim: set sw=4 et: