2020-12-08 10:14:40 +00:00
|
|
|
use base "installedtest";
|
|
|
|
use strict;
|
|
|
|
use testapi;
|
|
|
|
|
|
|
|
sub run {
|
|
|
|
assert_screen "root_console";
|
|
|
|
|
|
|
|
# check that lvm is present:
|
|
|
|
validate_script_output "lvdisplay | grep 'LV Status'", sub { $_ =~ m/available/ };
|
|
|
|
|
|
|
|
# Check for standard LVM attributes, w - writable, i-inherited, a-active, o-open
|
|
|
|
validate_script_output "lvs -o lv_attr", sub { $_ =~ m/wi-ao/ };
|
|
|
|
|
|
|
|
# Check that the partitions are ext4.
|
2022-08-16 14:29:03 +00:00
|
|
|
validate_script_output "mount | grep /dev/vda2", sub { $_ =~ m/on \/boot type ext4/ };
|
2020-12-08 10:14:40 +00:00
|
|
|
|
|
|
|
# There should be one partition in the LVM.
|
|
|
|
validate_script_output "mount | grep /dev/mapper", sub { $_ =~ m/on \/ type ext4/ };
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
sub test_flags {
|
2022-07-28 20:32:57 +00:00
|
|
|
return {fatal => 1};
|
2020-12-08 10:14:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
1;
|
|
|
|
|
|
|
|
# vim: set sw=4 et:
|