1
0
mirror of https://github.com/discourse/discourse.git synced 2025-03-07 11:49:47 +00:00
2014-08-11 16:30:26 +05:30

11 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