2018-03-23 16:10:51 +00:00
|
|
|
use base "installedtest";
|
|
|
|
use strict;
|
|
|
|
use testapi;
|
|
|
|
use utils;
|
|
|
|
|
|
|
|
sub run {
|
|
|
|
my $self = shift;
|
|
|
|
# set up appropriate repositories
|
|
|
|
repo_setup();
|
2023-03-02 21:51:08 +00:00
|
|
|
# install X environment
|
2023-06-20 10:27:30 +00:00
|
|
|
assert_script_run "dnf -y group install 'base-x'", 300;
|
2023-03-02 21:51:08 +00:00
|
|
|
# install firefox, plus our basic default fonts to try and avoid
|
|
|
|
# random weird font selection happening
|
|
|
|
assert_script_run "dnf -y install firefox google-noto-sans-vf-fonts google-noto-sans-mono-vf-fonts google-noto-serif-vf-fonts", 180;
|
|
|
|
# https://bugzilla.redhat.com/show_bug.cgi?id=1439429
|
|
|
|
assert_script_run "sed -i -e 's,enable_xauth=1,enable_xauth=0,g' /usr/bin/startx";
|
|
|
|
disable_firefox_studies;
|
2018-03-23 16:10:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
sub test_flags {
|
2022-07-28 20:32:57 +00:00
|
|
|
return {fatal => 1, milestone => 1};
|
2018-03-23 16:10:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
1;
|
|
|
|
|
|
|
|
# vim: set sw=4 et:
|