From f3fcd0b21f4dd6441f70e2153f34827a909376d3 Mon Sep 17 00:00:00 2001 From: Eric Mckenna Date: Tue, 19 Jun 2018 09:59:13 -0400 Subject: [PATCH] started section on how to upgrade from a FreeNas Jail, also added smiple recovery from bad sqlite version --- Installation.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/Installation.md b/Installation.md index fca4d4c..84a80a3 100644 --- a/Installation.md +++ b/Installation.md @@ -110,4 +110,17 @@ command_args="${procname} /usr/local/share/Radarr/Radarr.exe --data=${radarr_dat 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/.tgz +pkg lock sqlite3 ``` \ No newline at end of file