Files
Igor Lins e Silva 8a5fec6b7c add stop script
2019-12-13 23:20:15 -03:00

9 lines
139 B
Bash

#!/usr/bin/env bash
if [ $# -eq 0 ]; then
echo 'Please inform the app name. ex: "./stop.sh indexer"'
exit 1
fi
pm2 trigger "$@" stop