From d09d2812785a2e0c888ffb1c04b3ad5c84fec022 Mon Sep 17 00:00:00 2001 From: phamt Date: Wed, 5 Oct 2011 18:04:33 +0000 Subject: [PATCH] Increment wait time before logoff. git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@10707 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- xCAT-server/lib/xcat/plugins/zvm.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xCAT-server/lib/xcat/plugins/zvm.pm b/xCAT-server/lib/xcat/plugins/zvm.pm index 518f7c6f1..ce2faf5be 100644 --- a/xCAT-server/lib/xcat/plugins/zvm.pm +++ b/xCAT-server/lib/xcat/plugins/zvm.pm @@ -1257,7 +1257,7 @@ sub powerVM { # Power off virtual server (gracefully) elsif ( $args->[0] eq 'softoff' ) { $out = `ssh -o ConnectTimeout=10 $node "shutdown -h now"`; - sleep(25); + sleep(90); # Wait 1.5 minutes before logging user off $out = `ssh $hcp "$::DIR/stopvs $userId"`; xCAT::zvmUtils->printLn( $callback, "$node: $out" );