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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
142 B
Bash
Raw Normal View History

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