Files
soft_usite/run.sh
T
2025-02-06 14:22:29 -05:00

12 lines
207 B
Bash

#!/bin/bash
CURL='/usr/bin/curl'
URL='https://verify.rest/ping'
RESP="$($CURL $CURLARGS $URL)"
if [ $RESP = "Pong" ]
then
echo "Application is running"
else
cd /home/verify/public_html && make start
fi