diff options
| author | 2020-04-11 10:47:08 -0500 | |
|---|---|---|
| committer | 2020-04-11 17:47:08 +0200 | |
| commit | 1401186a48d29858e83fb3267eadd57e0f1545a0 (patch) | |
| tree | 05bddb94aa7dd06f7f4e9efbc1246759cba3ec7f /docs | |
| parent | d1fdfbf9874956e4aa1f1b1c94a3d90af5342ead (diff) | |
pause automatic updates during upgrade (#2893)
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/en/admins/07_LinuxUpdate.md | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/docs/en/admins/07_LinuxUpdate.md b/docs/en/admins/07_LinuxUpdate.md index 6ac564641..40698ab81 100644 --- a/docs/en/admins/07_LinuxUpdate.md +++ b/docs/en/admins/07_LinuxUpdate.md @@ -4,6 +4,22 @@ This tutorial demonstrates commands for updating FreshRSS. It assumes that your **Note that FreshRSS contains a built-in update system.** It's easier to use if you don't understand the commands that follow. It's available through the web interface of your FreshRSS installation, Administration → Update. +## Pausing automatic feed updates + +If [Automatic Feed Updating](08_FeedUpdates.md) has been configured, temporarily suspend the automatic feed updates during the upgrade process. + +Before performing the upgrade: + +1. cron method: run `sudo crontab -e` and comment out the task +2. systemd method: run `sudo systemctl stop freshrss.timer` + +After performing the upgrade: + +1. cron method: run `sudo crontab -e` and uncomment the task +2. systemd method: run `sudo systemctl start freshrss.timer` + +You may wish to run the cron task or systemd unit (`freshrss.service`) immediately after the upgrade to ensure the automatic feed updates are functioning correctly. + ## Using git **You must have used git to install FreshRSS to use this update method.** |
