Files
agent-bounty-protocol/cat_vibework.sh
OG T 745ff300b5
Some checks failed
Deploy to 110 WOOO Server / deploy (push) Failing after 7s
feat: harden A2A funnel and paid proposal intake
2026-06-11 11:28:08 +08:00

19 lines
487 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)
set jump_host "wooo@192.168.0.110"
set target_host "ollama@192.168.0.188"
spawn ssh -J $jump_host $target_host "echo $sudo_password | sudo -S cat /home/ollama/vibework-git/docker-compose.production.yml"
expect {
"*assword:*" {
send "$sudo_password\r"
exp_continue
}
eof
}