discourse/config/cloud/cloud66/scripts/curl.sh

11 lines
142 B
Bash
Raw Normal View History

2013-10-14 12:09:29 -04:00
#!/bin/bash
FILE=/tmp/curl_done
if [ -f $FILE ]
then
echo "File $FILE exists..."
else
2014-08-11 07:00:26 -04:00
curl --retry 5 localhost
2013-10-14 12:09:29 -04:00
touch /tmp/curl_done
2014-08-11 07:00:26 -04:00
fi