This repository has been archived on 2025-05-04. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
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