2013-08-09 17:31:37 -04:00
|
|
|
if [ -z "$1" ]; then echo "Must supply name"; exit 0; fi
|
|
|
|
|
2013-08-18 13:56:13 -04:00
|
|
|
source ./config.hosts
|
2013-08-16 15:34:54 -04:00
|
|
|
server=$M_HOST_PROD
|
2013-08-09 17:31:37 -04:00
|
|
|
|
|
|
|
echo stopping...
|
|
|
|
ssh $1@$server "cd deploy && ./shutdown"
|
|
|
|
|
|
|
|
|