mirror of
https://github.com/rocky-linux/os-autoinst-distri-rocky.git
synced 2024-11-08 14:31:23 +00:00
Trevor Cooper
152b347f75
- refs in templates.fif.json and code changed (typically hostnames in multi-worker tests) - refs in documentation left for historical / context purposes
27 lines
618 B
Perl
27 lines
618 B
Perl
use base "installedtest";
|
|
use strict;
|
|
use tapnet;
|
|
use testapi;
|
|
use utils;
|
|
|
|
sub run {
|
|
my $self = shift;
|
|
boot_to_login_screen(timeout => 300);
|
|
$self->root_console(tty => 3);
|
|
setup_tap_static('172.16.2.115', 'vnc002.test.openqa.rockylinux.org');
|
|
# test test: check if we can see the server
|
|
assert_script_run "ping -c 2 172.16.2.114";
|
|
# FIXME https://pagure.io/fedora-workstation/issue/231 - Boxes
|
|
# dropped VNC functionality, no default replacement yet
|
|
assert_script_run "dnf -y install vinagre";
|
|
desktop_vt;
|
|
}
|
|
|
|
sub test_flags {
|
|
return {fatal => 1};
|
|
}
|
|
|
|
1;
|
|
|
|
# vim: set sw=4 et:
|