mirror of
https://github.com/Unitech/pm2.git
synced 2025-12-08 20:35:53 +00:00
15 lines
214 B
Bash
15 lines
214 B
Bash
#!/bin/bash
|
|
|
|
`command -v node || command -v nodejs` ./scripts/ping.js
|
|
if [ $? -eq 0 ]
|
|
then
|
|
bash ./scripts/kill.js
|
|
if [ $? -eq 0 ]
|
|
then
|
|
./bin/pm2 resurrect
|
|
fi
|
|
exit 0;
|
|
else
|
|
exit 0;
|
|
fi
|