mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 08:09:13 -05:00
20039860eb
Amended documentation to point to it from the install guide in the alternative section Removed callout from the ubuntu guide, as it is unrelated
14 lines
No EOL
207 B
Bash
14 lines
No EOL
207 B
Bash
#!/bin/bash
|
|
FILE=/tmp/curl_done
|
|
|
|
if [ -f $FILE ]
|
|
then
|
|
echo "File $FILE exists..."
|
|
else
|
|
curl localhost
|
|
curl localhost
|
|
curl localhost
|
|
curl localhost
|
|
curl localhost
|
|
touch /tmp/curl_done
|
|
fi |