You've already forked mariadb-columnstore-engine
							
							
				mirror of
				https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
				synced 2025-11-03 17:13:17 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			42 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/bin/expect
 | 
						|
#
 | 
						|
# $Id: remote_command.sh 1122 2008-12-24 16:15:40Z 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 600
 | 
						|
set USERNAME root
 | 
						|
set SERVER [lindex $argv 0]
 | 
						|
set PASSWORD [lindex $argv 1]
 | 
						|
set COMMAND [lindex $argv 2]
 | 
						|
set DEBUG [lindex $argv 3]
 | 
						|
log_user $DEBUG
 | 
						|
spawn -noecho /bin/bash
 | 
						|
expect -re "# "
 | 
						|
# 
 | 
						|
# send command
 | 
						|
#
 | 
						|
send "ssh $USERNAME@$SERVER $COMMAND\n"
 | 
						|
expect {
 | 
						|
	-re "Host key verification failed" { send_user "FAILED: Host key verification failed\n" ; exit -1}
 | 
						|
	-re "service not known"    { send_user "           FAILED: Invalid Host\n" ; exit -1}
 | 
						|
	-re "ssh: connect to host" { send_user "           FAILED: Invalid Host\n" ; exit -1 }
 | 
						|
	-re "authenticity" { send "yes\n" 
 | 
						|
						 expect {
 | 
						|
						 	-re "word: " { send "$PASSWORD\n" } abort
 | 
						|
						 }
 | 
						|
						}
 | 
						|
	-re "word: " { send "$PASSWORD\n" } abort
 | 
						|
}
 | 
						|
expect {
 | 
						|
	-re "# " exit
 | 
						|
	-re "Permission denied" { send_user "           FAILED: Invalid password\n" ; exit -1 }
 | 
						|
	-re "(y or n)"  { send "y\n" 
 | 
						|
					  expect -re "# " { exit }
 | 
						|
					}
 | 
						|
}
 | 
						|
exit
 | 
						|
 |