Merge pull request #41 from spikyjt/patch-1

Correct brackets
This commit is contained in:
Niklas Keller
2016-10-22 11:01:32 +02:00
committed by GitHub

View File

@@ -78,7 +78,7 @@ You should execute `acme-client auto` as a daily cron. It's recommended to setup
that script.
```sh
0 0 * * * /usr/local/sbin/acme-client auto; RC=$?; if [[ $RC = 4 ]] || [[ $RC = 5 ]]; then /usr/sbin/service nginx reload; fi
0 0 * * * /usr/local/sbin/acme-client auto; RC=$?; if [ $RC = 4 ] || [ $RC = 5 ]; then /usr/sbin/service nginx reload; fi
```
The path to `acme-client` should be modified to suit your system. The full path should be used as the system path may not be set up in your cron environment.