mirror of
https://github.com/moparisthebest/mailiverse
synced 2024-11-14 21:25:05 -05:00
9 lines
133 B
Plaintext
9 lines
133 B
Plaintext
|
if [ -z "$1" ]; then echo "Must supply name"; exit 0; fi
|
||
|
|
||
|
server="blue"
|
||
|
|
||
|
echo stopping...
|
||
|
ssh $1@$server "cd deploy && ./shutdown"
|
||
|
|
||
|
|