From 9f33a46e06a3d10c53ee1fc6e2fa8d8ba1c1b280 Mon Sep 17 00:00:00 2001 From: david hill Date: Wed, 6 Apr 2016 16:57:01 -0500 Subject: [PATCH] add delay between the mysql scripts --- oam/install_scripts/user_installer.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/oam/install_scripts/user_installer.sh b/oam/install_scripts/user_installer.sh index 54aa7ca27..0c0dd20d5 100644 --- a/oam/install_scripts/user_installer.sh +++ b/oam/install_scripts/user_installer.sh @@ -297,13 +297,13 @@ if { $INSTALLTYPE == "initial"} { send_user "Run MySQL Setup Scripts on Module " send "ssh $USERNAME@$SERVER '$BASH $INSTALLDIR/bin/post-mysqld-install'\n" if { $PASSWORD != "ssh" } { - set timeout 30 + set timeout 60 expect { "word: " { send "$PASSWORD\n" } "passphrase" { send "$PASSWORD\n" } } } - set timeout 20 + set timeout 60 expect { "Connection closed" { send_user "ERROR: Connection closed\n" ; exit 1 } }