Skip to content

Commit

Permalink
Live patch 3 v9.9 (#7355)
Browse files Browse the repository at this point in the history
- Live patch 3 | Fix Sonarr v4 permissions for updater for installed Sonarr v4 instances
  • Loading branch information
MichaIng authored Jan 8, 2025
1 parent ce1d589 commit f90d2c4
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .update/version
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,21 @@ G_MIN_DEBIAN=6
G_OLD_DEBIAN_BRANCH='8'
# Live patches
G_LIVE_PATCH_DESC=(
[0]='Fix Sonarr v4 permissions for updater. Only needed if you plan to install or migrate to Sonarr v4 via dietpi-software.'
[0]='Fix Sonarr v4 permissions for updater in dietpi-software. Only needed if you plan to install or migrate to Sonarr v4 via dietpi-software.'
[1]='Fix install of patches Fail2Ban Dropbear filter: https://github.com/MichaIng/DietPi/issues/7325'
[2]='Install patched Fail2Ban Dropbear filter: https://github.com/fail2ban/fail2ban/pull/3597'
[3]='Fix Sonarr v4 permissions for updater for installed Sonarr v4 instances'
)
G_LIVE_PATCH_COND=(
[0]='grep -q '\''^ReadWritePaths=-/usr/lib/sonarr'\'' /boot/dietpi/dietpi-software'
[1]='[[ ! -d /etc/fail2ban/filter.d ]] && grep -q '\''^ G_EXEC mkdir -p /etc/fail2ban/fail2ban.d'\'' /boot/dietpi/dietpi-software'
[1]='[[ ! -d /etc/fail2ban/filter.d ]] && grep -q '\''mkdir -p /etc/fail2ban/fail2ban.d'\'' /boot/dietpi/dietpi-software'
[2]='[[ -d /etc/fail2ban/filter.d && ! -f /etc/fail2ban/filter.d/dropbear.local ]]'
[3]='[[ -f /opt/sonarr/Sonarr ]] && grep -q '\''/usr/lib/sonarr'\'' /etc/systemd/system/sonarr.service 2> /dev/null'
)
# shellcheck disable=SC2016
G_LIVE_PATCH=(
[0]='sed -i '\''s|^ReadWritePaths=-/usr/lib/sonarr|ReadWritePaths=-$install_dir|'\'' /boot/dietpi/dietpi-software'
[1]='sed -i '\''s|^ G_EXEC mkdir -p /etc/fail2ban/fail2ban.d| G_EXEC mkdir -p /etc/fail2ban/{fail2ban,filter}.d|'\'' /boot/dietpi/dietpi-software'
[2]='curl -sSf https://raw.githubusercontent.com/fail2ban/fail2ban/eb8b443/config/filter.d/dropbear.conf -o /etc/fail2ban/filter.d/dropbear.local'
[1]='sed -i '\''s|mkdir -p /etc/fail2ban/fail2ban.d|mkdir -p /etc/fail2ban/{fail2ban,filter}.d|'\'' /boot/dietpi/dietpi-software'
[2]='curl -sSf https://raw.githubusercontent.com/fail2ban/fail2ban/master/config/filter.d/dropbear.conf -o /etc/fail2ban/filter.d/dropbear.local'
[3]='sed -i '\''s|/usr/lib/sonarr|/opt/sonarr|'\'' /etc/systemd/system/sonarr.service && systemctl daemon-reload'
)

0 comments on commit f90d2c4

Please sign in to comment.