1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-11-03 17:13:17 +03:00

fixed install error on fresh systems

This commit is contained in:
David Hill
2017-09-15 18:10:58 -05:00
parent a8e4b1687f
commit bd6c44ece1
2 changed files with 5 additions and 3 deletions

View File

@@ -78,7 +78,8 @@ expect {
exp_continue
}
# "No such file or directory" { send_user "DONE" }
"Exit status 0" { send_user "DONE" }
"Exit status 0" { send_user "DONE" }
"Exit status 127" { send_user "DONE" }
"Read-only file system" { send_user "ERROR: local disk - Read-only file system\n" ; exit 1}
timeout { send_user "DONE" }
}

View File

@@ -95,7 +95,8 @@ expect {
exp_continue
}
# "No such file or directory" { send_user "DONE" }
"Exit status 0" { send_user "DONE" }
"Exit status 127" { send_user "DONE" }
"Exit status 0" { send_user "DONE" }
"Permission denied, please try again" { send_user "ERROR: Invalid password\n" ; exit 1 }
"Read-only file system" { send_user "ERROR: local disk - Read-only file system\n" ; exit 1}
"Connection refused" { send_user "ERROR: Connection refused\n" ; exit 1 }
@@ -110,7 +111,7 @@ send_user "\n"
#
send_user "Erase MariaDB Columnstore Packages on Module "
send "ssh -v $USERNAME@$SERVER '$PKGERASE '\n"
set timeout 120
set timeout 60
expect {
"word: " { send "$PASSWORD\n"
exp_continue