1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-10-02 14:17:19 +02:00

started section on how to upgrade from a FreeNas Jail, also added smiple recovery from bad sqlite version

Eric Mckenna 2018-06-19 09:59:13 -04:00
parent e5370e6976
commit f3fcd0b21f

@ -111,3 +111,16 @@ start_precmd="export XDG_CONFIG_HOME=${radarr_data_dir}"
run_rc_command "$1"
```
### Manually Update Radarr From Within Jail ###
```bash
# workaround for sqlite "fdatasync" error that occurs on recent versions (> 3.18?) of sqlite3
pkg lock sqlite3
pkg update && pkg upgrade
```
if you've happened to upgrade without locking sqlite then check `/var/cache/pkg/sqlite-XXXX` for the 3.18 and force install over it.
```bash
pkg install -f /var/cache/pkg/<sqlite-pkg-name>.tgz
pkg lock sqlite3
```