You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-30 19:23:07 +03:00
remove david clustertest dir
This commit is contained in:
Binary file not shown.
File diff suppressed because it is too large
Load Diff
@ -1,40 +0,0 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
detectOS () {
|
||||
checkFile1=/etc/os-release
|
||||
checkFile2=/etc/centos-release
|
||||
if [ -f "$checkFile1" ]
|
||||
then
|
||||
osPrettyName=`cat $checkFile1 | grep PRETTY_NAME|awk -F"=" '{print $2}'`
|
||||
osVersionID=`cat $checkFile1 | grep VERSION_ID | awk -F"=" '{print $2}' | awk -F"." '{print $1}' | sed 's/"//g'`
|
||||
else
|
||||
osPrettyName=`head -n 1 $checkFile2`
|
||||
osVersionID=`echo $osPrettyName | awk -F" " '{print $3}' | awk -F"." '{print $1}'`
|
||||
fi
|
||||
#
|
||||
osName=`echo $osPrettyName | awk -F" " '{print $1}' | sed 's/"//g'`
|
||||
if [ -z "$osPrettyName" ]
|
||||
then
|
||||
osPrettyName=`uname -o -s -r -v`
|
||||
fi
|
||||
if [ -z "$osName" ] || [ -z "$osVersionID" ]
|
||||
then
|
||||
osTag=""
|
||||
else
|
||||
osTag=`echo $osName$osVersionID | awk '{print tolower($0)}'`
|
||||
fi
|
||||
}
|
||||
#
|
||||
detectOS
|
||||
echo Operating System name: $osPrettyName
|
||||
echo Operating System tag: $osTag
|
||||
case "$osTag" in
|
||||
centos6|centos7|ubuntu16|debian8|suse12)
|
||||
;;
|
||||
*)
|
||||
echo OS not supported
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
|
||||
exit 0
|
@ -1,92 +0,0 @@
|
||||
#!/usr/bin/expect
|
||||
#
|
||||
# $Id: remote_command.sh 3495 2012-12-17 22:51:40Z dhill $
|
||||
#
|
||||
# Remote command execution script to another server
|
||||
# Argument 1 - Remote Server Host Name or IP address
|
||||
# Argument 2 - Remote Server password
|
||||
# Argument 3 - Command
|
||||
# Argument 4 - debug flag
|
||||
# Argument 5 - Remote user name (optional)
|
||||
# Argument 6 - Force a tty to be allocated (optional)
|
||||
set stty_init {cols 512 -opost};
|
||||
set timeout 10
|
||||
set SERVER [lindex $argv 0]
|
||||
set PASSWORD [lindex $argv 1]
|
||||
set COMMAND [lindex $argv 2]
|
||||
set DEBUG [lindex $argv 3]
|
||||
|
||||
if {[info exists env(USER)]} {
|
||||
set USERNAME $env(USER)
|
||||
} else {
|
||||
set USERNAME "root"
|
||||
}
|
||||
|
||||
set UNM [lindex $argv 4]
|
||||
if { $UNM != "" && $UNM != "-" } {
|
||||
set USERNAME "$UNM"
|
||||
}
|
||||
set TTY ""
|
||||
set TTYOPT [lindex $argv 5]
|
||||
if { $TTYOPT != "" } {
|
||||
set TTY "-t"
|
||||
}
|
||||
log_user $DEBUG
|
||||
spawn -noecho /bin/bash
|
||||
#expect -re {[$#] }
|
||||
|
||||
if { $PASSWORD == "ssh" } {
|
||||
set PASSWORD ""
|
||||
}
|
||||
|
||||
#
|
||||
# send command
|
||||
#
|
||||
send "ssh -v $TTY $USERNAME@$SERVER '$COMMAND'\n"
|
||||
expect {
|
||||
"cannot access" { exit 1}
|
||||
"Host key verification failed" { send_user "FAILED: Host key verification failed\n" ; exit 1}
|
||||
"service not known" { send_user " FAILED: Invalid Host\n" ; exit 1}
|
||||
"ssh: connect to host" { send_user " FAILED: Invalid Host\n" ; exit 1 }
|
||||
"Connection refused" { send_user "ERROR: Connection refused\n" ; exit 1 }
|
||||
"Connection closed" { send_user "ERROR: Connection closed\n" ; exit 1 }
|
||||
"authenticity" { send "yes\n"
|
||||
expect {
|
||||
"word: " { send "$PASSWORD\n" }
|
||||
"passphrase" { send "$PASSWORD\n" }
|
||||
}
|
||||
}
|
||||
"word: " { send "$PASSWORD\n" }
|
||||
"passphrase" { send "$PASSWORD\n" }
|
||||
"command not found" { exit 3 }
|
||||
# -re {[$#] } { exit 0 }
|
||||
"Exit status 0" { exit 0 }
|
||||
"Exit status 1" { exit 1 }
|
||||
"Exit status 3" { exit 1 }
|
||||
"Exit status 4" { exit 1 }
|
||||
timeout { exit 2 }
|
||||
"Permission denied, please try again" { send_user "FAILED: Invalid password\n" ; exit 1 }
|
||||
}
|
||||
expect {
|
||||
"command not found" { exit 3 }
|
||||
# -re {[$#] } { exit 0 }
|
||||
"Exit status 0" { exit 0 }
|
||||
"Exit status 1" { exit 1 }
|
||||
"Exit status 3" { exit 1 }
|
||||
"Exit status 4" { exit 1 }
|
||||
timeout { exit 2 }
|
||||
"cannot access" { exit 1}
|
||||
"Permission denied, please try again" { send_user "FAILED: Invalid password\n" ; exit 1 }
|
||||
|
||||
"(y or n)" { send "y\n"
|
||||
"command not found" { exit 3 }
|
||||
# expect -re {[$#] } { exit 0 }
|
||||
"Exit status 0" { exit 0 }
|
||||
"Exit status 1" { exit 1 }
|
||||
"Exit status 3" { exit 1 }
|
||||
"Exit status 4" { exit 1 }
|
||||
timeout { exit 2 }
|
||||
}
|
||||
}
|
||||
exit 0
|
||||
|
@ -1,58 +0,0 @@
|
||||
#!/usr/bin/expect
|
||||
#
|
||||
# $Id: remote_commend.sh 421 2007-04-05 15:46:55Z dhill $
|
||||
#
|
||||
# Remote command execution script to another server
|
||||
# Argument 1 - Remote Server Host Name or IP address
|
||||
# Argument 2 - Remote Server root password
|
||||
# Argument 3 - Command
|
||||
set timeout 10
|
||||
set USERNAME $env(USER)"@"
|
||||
set SERVER [lindex $argv 0]
|
||||
set PASSWORD [lindex $argv 1]
|
||||
set FILE [lindex $argv 2]
|
||||
set DEBUG [lindex $argv 3]
|
||||
log_user $DEBUG
|
||||
spawn -noecho /bin/bash
|
||||
|
||||
if { $PASSWORD == "ssh" } {
|
||||
set PASSWORD ""
|
||||
}
|
||||
|
||||
#
|
||||
# send command
|
||||
#
|
||||
#expect -re {[$#] }
|
||||
send "scp -v $USERNAME$SERVER:$FILE .\n"
|
||||
expect {
|
||||
"Exit status 0" { exit 0 }
|
||||
"Exit status 1" { exit 1 }
|
||||
"100%" { send_user "DONE\n" ; exit 0 }
|
||||
"authenticity" { send "yes\n"
|
||||
expect {
|
||||
"word: " { send "$PASSWORD\n" }
|
||||
"passphrase" { send "$PASSWORD\n" }
|
||||
}
|
||||
}
|
||||
"service not known" { send_user "FAILED: Invalid Host\n" ; exit 1 }
|
||||
"Connection refused" { send_user "ERROR: Connection refused\n" ; exit 1 }
|
||||
"Connection timed out" { send_user "FAILED: Connection timed out\n" ; exit 1 }
|
||||
"lost connection" { send_user "FAILED: Connection refused\n" ; exit 1 }
|
||||
"Connection closed" { send_user "ERROR: Connection closed\n" ; exit 1 }
|
||||
"word: " { send "$PASSWORD\n" }
|
||||
"passphrase" { send "$PASSWORD\n" }
|
||||
"scp:" { send_user "FAILED\n" ; exit 1 }
|
||||
"Permission denied, please try again" { send_user "FAILED: Invalid password\n" ; exit 1 }
|
||||
}
|
||||
expect {
|
||||
"Exit status 0" { exit 0 }
|
||||
"Exit status 1" { exit 1 }
|
||||
"100%" { send_user "DONE\n" ; exit 0 }
|
||||
"scp:" { send_user "FAILED\n" ; exit 1 }
|
||||
"Permission denied, please try again" { send_user "FAILED: Invalid password\n" ; exit 1 }
|
||||
"No such file or directory" { send_user "FAILED: No such file or directory\n" ; exit 1 }
|
||||
"Connection refused" { send_user "ERROR: Connection refused\n" ; exit 1 }
|
||||
"Connection closed" { send_user "ERROR: Connection closed\n" ; exit 1 }
|
||||
}
|
||||
exit 0
|
||||
|
@ -1,57 +0,0 @@
|
||||
#!/usr/bin/expect
|
||||
#
|
||||
# $Id: remote_commend.sh 421 2007-04-05 15:46:55Z dhill $
|
||||
#
|
||||
# Remote command execution script to another server
|
||||
# Argument 1 - Remote Server Host Name or IP address
|
||||
# Argument 2 - Remote Server root password
|
||||
# Argument 3 - Command
|
||||
set timeout 30
|
||||
set USERNAME $env(USER)"@"
|
||||
set SERVER [lindex $argv 0]
|
||||
set PASSWORD [lindex $argv 1]
|
||||
set FILE [lindex $argv 2]
|
||||
set DEBUG [lindex $argv 3]
|
||||
log_user $DEBUG
|
||||
spawn -noecho /bin/bash
|
||||
|
||||
if { $PASSWORD == "ssh" } {
|
||||
set PASSWORD ""
|
||||
}
|
||||
|
||||
#
|
||||
# send command
|
||||
#
|
||||
send "scp -v $FILE $USERNAME$SERVER:$FILE\n"
|
||||
expect {
|
||||
"Exit status 0" { exit 0 }
|
||||
"Exit status 1" { exit 1 }
|
||||
-re "100%" { send_user "DONE\n" ; sleep 2; exit 0 }
|
||||
-re "authenticity" { send "yes\n"
|
||||
expect {
|
||||
-re "word: " { send "$PASSWORD\n" }
|
||||
-re "passphrase" { send "$PASSWORD\n" }
|
||||
}
|
||||
}
|
||||
-re "service not known" { send_user "FAILED: Invalid Host\n" ; exit 1 }
|
||||
-re "Connection refused" { send_user "FAILED: Connection refused\n" ; exit 1 }
|
||||
-re "Connection timed out" { send_user "FAILED: Connection timed out\n" ; exit 1 }
|
||||
-re "lost connection" { send_user "FAILED: Connection refused\n" ; exit 1 }
|
||||
-re "Connection closed" { send_user "ERROR: Connection closed\n" ; exit 1 }
|
||||
-re "word: " { send "$PASSWORD\n" }
|
||||
-re "passphrase" { send "$PASSWORD\n" }
|
||||
-re "WARNING:" { send "rm -f /root/.ssh/known_hosts" ; exit 1 }
|
||||
-re "Permission denied, please try again" { send_user "FAILED: Invalid password\n" ; exit 1 }
|
||||
}
|
||||
expect {
|
||||
"Exit status 0" { exit 0 }
|
||||
"Exit status 1" { exit 1 }
|
||||
-re "100%" { send_user "DONE\n" ; sleep 2 ; exit 0 }
|
||||
-re "scp:" { send_user "FAILED\n" ; exit 1 }
|
||||
-re "Permission denied, please try again" { send_user "FAILED: Invalid password\n" ; exit 1 }
|
||||
-re "No such file or directory" { send_user "FAILED: Invalid file\n" ; exit 1 }
|
||||
-re "Connection refused" { send_user "FAILED: Connection refused\n" ; exit 1 }
|
||||
-re "Connection closed" { send_user "ERROR: Connection closed\n" ; exit 1 }
|
||||
}
|
||||
exit 0
|
||||
|
Reference in New Issue
Block a user