From 51eed74a0efd58a2062a502fe16e65bf6acfc47a Mon Sep 17 00:00:00 2001 From: Kendall Garner <17521368+kgarner7@users.noreply.github.com> Date: Fri, 27 Dec 2024 03:13:13 +0000 Subject: [PATCH] fix(release): change owner of cache to Navidrome user (#3599) --- release/linux/postinstall.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/release/linux/postinstall.sh b/release/linux/postinstall.sh index da43686b0..65f1d208d 100644 --- a/release/linux/postinstall.sh +++ b/release/linux/postinstall.sh @@ -19,6 +19,9 @@ if [ ! -f "$postinstall_flag" ]; then # The primary reason why this would fail is if the service was already installed AND # someone manually removed the .installed flag. In this case, ignore the error navidrome service install --user navidrome --working-directory /var/lib/navidrome --configfile /etc/navidrome/navidrome.toml || : + # Any `navidrome` command will make a cache. Make sure that this is properly owned by the Navidrome user + # and not by root + chown navidrome:navidrome /var/lib/navidrome/cache touch "$postinstall_flag" fi