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
2014-08-11 16:30:26 +05:30

10 lines
142 B
Bash

#!/bin/bash
FILE=/tmp/curl_done
if [ -f $FILE ]
then
echo "File $FILE exists..."
else
curl --retry 5 localhost
touch /tmp/curl_done
fi