From 22fdf4afeb5d114a678fc57d2a9eeba370424894 Mon Sep 17 00:00:00 2001 From: Joshua Boniface Date: Sun, 9 Dec 2018 20:10:05 -0500 Subject: [PATCH] Add post-install configuration of symlink --- debian/postinst | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/debian/postinst b/debian/postinst index a32331da7..122de087d 100644 --- a/debian/postinst +++ b/debian/postinst @@ -37,10 +37,11 @@ case "$1" in # ensure jellyfin binary has appropriate permissions chmod 755 /usr/bin/jellyfin - /usr/bin/mono --aot=full -O=all $JELLYFIN_BIN > /dev/null 2>&1 || true - chmod +x ${JELLYFIN_DIR}/restart.sh > /dev/null 2>&1 || true + # Link hardcoded /var/lib/emby to /var/lib/jellyfin (TEMPORARY) + ln -sf /var/lib/jellyfin /var/lib/emby + ;; abort-upgrade|abort-remove|abort-deconfigure) ;;