mirror of
				https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git
				synced 2025-10-30 23:05:58 +00:00 
			
		
		
		
	Using .local is apparently Bad Form because it's reserved for mDNS. However there doesn't appear to be any particularly Good Form for what to call a test domain you never want to exist outside of a closed system, apparently. Sigh. Let's try this. Includes a bump to disk_ks version because the kickstarts on that image also need to have this change applied. Signed-off-by: Adam Williamson <awilliam@redhat.com>
		
			
				
	
	
		
			26 lines
		
	
	
		
			537 B
		
	
	
	
		
			Perl
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			537 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.117', 'vnc004.test.openqa.fedoraproject.org');
 | |
|     # install tigervnc (Boxes doesn't do reverse VNC)
 | |
|     assert_script_run "dnf -y install tigervnc", 180;
 | |
|     # take down the firewall
 | |
|     assert_script_run "systemctl stop firewalld";
 | |
|     desktop_vt;
 | |
| }
 | |
| 
 | |
| sub test_flags {
 | |
|     return { fatal => 1 };
 | |
| }
 | |
| 
 | |
| 1;
 | |
| 
 | |
| # vim: set sw=4 et:
 |