Correct brackets
I'm sure I did this properly the first time. Must have lost concentration!
This commit is contained in:
@@ -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.
|
||||
|
||||
|
||||
Reference in New Issue
Block a user