From f95e1d55a877d681143c05af475201b47863a530 Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Thu, 20 Oct 2016 13:44:08 -0700 Subject: [PATCH] give IPA server decommission longer to complete (RHBZ #1387425) It's suddenly taking longer in Rawhide - reported to RHBZ - so let it take longer. --- tests/role_deploy_domain_controller.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/role_deploy_domain_controller.pm b/tests/role_deploy_domain_controller.pm index c7858e87..a3e2807c 100644 --- a/tests/role_deploy_domain_controller.pm +++ b/tests/role_deploy_domain_controller.pm @@ -94,7 +94,7 @@ sub run { # check role is stopped validate_script_output 'rolectl status domaincontroller/domain.local', sub { $_ =~ m/^ready-to-start/ }; # decommission the role - assert_script_run 'rolectl decommission domaincontroller/domain.local', 120; + assert_script_run 'rolectl decommission domaincontroller/domain.local', 300; # check role is decommissioned validate_script_output 'rolectl list instances', sub { $_ eq "" }; }