ZoeApi/checkAPI.sh

11 lines
282 B
Bash

wget -O wgetOut "http://127.0.0.1:3337/api/units/listlogin";
if [[ $? -ne 0 ]]; then
echo "API Offline"
sudo /usr/bin/forever; forever stop zoe_api
sudo /usr/bin/forever; forever start /var/www/zoe_api/forever.json
exit 1;
else
echo "API Online"
exit 0;
fi