os-autoinst-distri-rocky/tests/server_filesystem_default.pm
Adam Williamson ffa7ca2447 Add a check that correct filesystem was used on Server installs
This is currently broken, but openQA doesn't notice; we really
should. We could also check the default in other cases, but I
think that's less clear-cut, as it's kind of an anaconda design
choice, it's not mandated in Fedora requirements anywhere.

Signed-off-by: Adam Williamson <awilliam@redhat.com>
2018-01-05 15:18:05 -08:00

18 lines
265 B
Perl

use base "installedtest";
use strict;
use testapi;
sub run {
my $self = shift;
# check / is xfs, as it should be on server
assert_script_run 'findmnt -M / -o FSTYPE | grep xfs';
}
sub test_flags {
return { fatal => 1 };
}
1;
# vim: set sw=4 et: