mirror of
https://github.com/discourse/discourse.git
synced 2025-02-08 12:25:14 +08:00
![Sam Saffron](/assets/img/avatar_default.png)
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
207 B
Bash
14 lines
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 |