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