20 lines
534 B
Bash
Executable File
20 lines
534 B
Bash
Executable File
#!/bin/bash
|
|
|
|
machine=${1:-0}
|
|
model=${2:-controller}
|
|
|
|
read -d '' -r cmds <<'EOF'
|
|
user=$(sudo ls /var/lib/juju/agents/)
|
|
conf=/var/lib/juju/agents/${user}/agent.conf
|
|
password=$(sudo grep statepassword ${conf} | cut -d' ' -f2)
|
|
if [ -f /usr/lib/juju/mongo*/bin/mongo ]; then
|
|
client=/usr/lib/juju/mongo*/bin/mongo
|
|
else
|
|
client=/usr/bin/mongo
|
|
fi
|
|
${client} 127.0.0.1:37017/juju --authenticationDatabase admin --ssl --sslAllowInvalidCertificates --username "${user}" --password "${password}"
|
|
EOF
|
|
|
|
juju ssh -m ${model} ${machine} "${cmds}"
|
|
|