Upgrade Gitea to 1.20.2

This commit is contained in:
James Skemp 2023-08-17 19:03:56 -05:00
parent a7def019b6
commit 2ea1e00e3c
1 changed files with 23 additions and 0 deletions

View File

@ -305,3 +305,26 @@ Updates came pretty fast, so I ran all three of these one after the other.
21. `sudo systemctl status gitea`
- Should be active (running).
22. After some period of time, delete the backup file.
## Updating 1.20.1 to 1.20.2
1. `sudo systemctl stop gitea`
2. `sudo su - git`
3. `gitea dump -c /etc/gitea/app.ini -w /var/lib/gitea -t /tmp`
4. `ls -l --block-size=M`
- `rm <old-backup-file>`
- `chmod a=r <new-backup-file>`
5. `exit`
6. `VERSION=1.20.2`
7. `sudo wget -O gitea https://dl.gitea.io/gitea/${VERSION}/gitea-${VERSION}-linux-amd64`
8. `sudo systemctl status gitea`
- Should be inactive/dead.
9. `sudo mv gitea /usr/local/bin/gitea`
10. `sudo chmod +x /usr/local/bin/gitea`
11. `sudo systemctl restart gitea`
12. `sudo systemctl status gitea`
- Should be active (running).
13. After some period of time, delete the backup file.
14. `sudo vim /etc/gitea/app.ini`
15. Remove `[log].ROUTER = console` option as it's currently the default.
- This setting has otherwise moved to a new location.
16. `sudo systemctl restart gitea`