mirror of
https://github.com/moparisthebest/mailiverse
synced 2024-11-25 18:12:14 -05:00
21 lines
332 B
Plaintext
Executable File
21 lines
332 B
Plaintext
Executable File
if [ -z "$1" ]; then echo "Must supply name"; exit 0; fi
|
|
|
|
server="blue"
|
|
|
|
echo stopping...
|
|
ssh $1@$server "cd deploy && ./shutdown"
|
|
|
|
sleep 2
|
|
|
|
echo starting...
|
|
ssh $1@$server "cd deploy && ./run"
|
|
|
|
echo tailing...
|
|
sleep 2
|
|
ssh $1@$server "tail run.log"
|
|
|
|
echo ...
|
|
echo "***** remember to restart mail-user if you restart-james *****"
|
|
|
|
|