Merge pull request #14 from obsidianpentesting/master

fix: make cronjob example correctly execute every sixth hour
pull/22/head
Hannah Ward 2017-07-08 02:46:41 +01:00 committed by GitHub
commit a64089a8d6
1 changed files with 1 additions and 1 deletions

View File

@ -129,7 +129,7 @@ crontab -e
This will open your crontab. Paste in
```cron
* */6 * * * <the output of that echo command you just ran>
0 */6 * * * <the output of that echo command you just ran>
```
This will run the polling script every 6 hours to keep things all synced up.