2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-06 10:50:21 +08:00
discourse/config/cloud/cloud66/scripts/curl.sh

11 lines
142 B
Bash
Raw Normal View History

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