increase the retry times

git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@3450 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
This commit is contained in:
wanghuaz 2009-05-27 03:22:52 +00:00
parent b12ca5863a
commit 8fee83212e

View File

@ -2200,7 +2200,7 @@ if { $set_boot_order > 1 } {
set done 1
}
timeout {
if { $retry_count == 2 } {
if { $retry_count == 3 } {
send_user "$PROGRAM: Timeout waiting for command prompt\n"
exit 1
}
@ -2208,7 +2208,7 @@ if { $set_boot_order > 1 } {
incr retry_count
}
eof {
if { $retry_count == 2 } {
if { $retry_count == 3 } {
send_user "$PROGRAM: ssh connection to terminated unexpectedly\n"
exit 1
}
@ -2235,7 +2235,7 @@ if { $set_boot_order > 1 } {
set done 1
}
timeout {
if { $retry_count == 1 } {
if { $retry_count == 3 } {
send_user "$PROGRAM: Timeout waiting for command prompt\n"
exit 1
}
@ -2243,7 +2243,7 @@ if { $set_boot_order > 1 } {
incr retry_count
}
eof {
if { $retry_count == 1 } {
if { $retry_count == 3 } {
send_user "$PROGRAM: ssh connection to terminated unexpectedly\n"
exit 1
}