mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 13:06:40 +08:00
11 lines
142 B
Bash
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
|