Correct cron example (#4079)

The old example was inaccurate. crontab on Debian does not support a user name, but files in /etc/cron.d and /etc/crontab do (see https://manpages.debian.org/bullseye/cron/crontab.5.en.html)

According to https://manpages.debian.org/bullseye/cron/cron.8.en.html : In general, the system administrator should not use /etc/cron.d/, but use the standard system crontab /etc/crontab so I propose to append the line to this file
pull/4081/head
4xfu 3 years ago committed by GitHub
parent 7a81865e41
commit 3340235540
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      docs/en/admins/08_FeedUpdates.md

@ -18,7 +18,7 @@ It's advisable that you run the Cron job as your Web server user (often `www-dat
To run the updater script every hour, and 10 minutes past the hour:
Run `sudo crontab -e` and copy the following line into the crontab:
Edit `/etc/crontab` and append the following line:
```text
10 * * * * www-data php -f /usr/share/FreshRSS/app/actualize_script.php > /tmp/FreshRSS.log 2>&1
```

Loading…
Cancel
Save