From 8eea2a5d1f3c2aa7e51a10a796172ab39052c7f9 Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Fri, 3 Mar 2017 15:55:31 -0800 Subject: [PATCH] Bump the timeout on the initial 'dnf -y update' for update tests --- lib/utils.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/utils.pm b/lib/utils.pm index a66c2734..eb86a69b 100644 --- a/lib/utils.pm +++ b/lib/utils.pm @@ -340,7 +340,7 @@ sub _repo_setup_updates { # write a repo config file assert_script_run 'printf "[advisory]\nname=Advisory repo\nbaseurl=file:///opt/update_repo\nenabled=1\nmetadata_expire=3600\ngpgcheck=0" > /etc/yum.repos.d/advisory.repo'; # run an update now - script_run "dnf -y update", 300; + script_run "dnf -y update", 600; } sub repo_setup {