mirror of
https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git
synced 2024-11-04 23:24:21 +00:00
72edbfe991
This is to make the infra folks happy, apparently using 10.0.x.x and 10.1.x.x is causing conflicts since our actual infra network uses those ranges too. Signed-off-by: Adam Williamson <awilliam@redhat.com>
33 lines
688 B
Perl
33 lines
688 B
Perl
use base "installedtest";
|
|
use strict;
|
|
use lockapi;
|
|
use mmapi;
|
|
use tapnet;
|
|
use testapi;
|
|
use utils;
|
|
|
|
sub run {
|
|
my $self = shift;
|
|
bypass_1691487 unless (get_var("DESKTOP"));
|
|
$self->root_console(tty=>3);
|
|
# wait for server to be set up
|
|
mutex_lock "podman_server_ready";
|
|
mutex_unlock "podman_server_ready";
|
|
# connect to server then tell server we're done
|
|
my $ret = script_run "curl http://172.16.2.114";
|
|
mutex_create "podman_connect_done";
|
|
# sleep a bit to give server time to pick up the mutex
|
|
sleep 5;
|
|
# die if connection failed
|
|
die "connection failed!" if ($ret);
|
|
}
|
|
|
|
|
|
sub test_flags {
|
|
return { fatal => 1 };
|
|
}
|
|
|
|
1;
|
|
|
|
# vim: set sw=4 et:
|