comment on cron jobs

This commit is contained in:
cynic 2024-07-09 00:38:18 +00:00
parent d5679a3848
commit 0312ee99ec

View File

@ -13,5 +13,10 @@ chmod +x get-certs.sh
./get-certs.sh ./get-certs.sh
``` ```
Remember to create a cronjob to run the script every month. Remember to create a cron job to run the script every month.
Example:
```cron
11 21 * * * /opt/get-certs.sh > /dev/null 2>&1
```