Correct brackets

I'm sure I did this properly the first time. Must have lost concentration!
This commit is contained in:
JT
2016-10-22 09:55:36 +01:00
committed by GitHub
parent 9356a060e7
commit 28ae97f135

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.