23 lines
616 B
Bash
Executable File
23 lines
616 B
Bash
Executable File
#!/usr/bin/expect -f
|
|
set timeout -1
|
|
if {![info exists env(SUDO_PASSWORD)] || $env(SUDO_PASSWORD) eq ""} {
|
|
puts "Missing SUDO_PASSWORD env variable."
|
|
exit 1
|
|
}
|
|
set sudo_password $env(SUDO_PASSWORD)
|
|
if {![info exists env(CONFIRM_REMOTE_OPS)] || $env(CONFIRM_REMOTE_OPS) ne "YES"} {
|
|
puts "Refusing to copy .env to remote. Set CONFIRM_REMOTE_OPS=YES to continue."
|
|
exit 1
|
|
}
|
|
set jump_host "wooo@192.168.0.110"
|
|
set target_host "ollama@192.168.0.188"
|
|
|
|
spawn scp -J $jump_host .env $target_host:/home/ollama/agent-bounty-protocol/.env
|
|
expect {
|
|
"*assword:*" {
|
|
send "$sudo_password\r"
|
|
exp_continue
|
|
}
|
|
eof
|
|
}
|