diff options
| author | Joshua Boniface <joshua@boniface.me> | 2018-12-09 20:10:05 -0500 |
|---|---|---|
| committer | Joshua Boniface <joshua@boniface.me> | 2018-12-09 20:10:05 -0500 |
| commit | 22fdf4afeb5d114a678fc57d2a9eeba370424894 (patch) | |
| tree | ea8eec1747c4268d74ce61d677997bba24e8be51 | |
| parent | e9122b76ffd87dbcbe76d1e9149c48bb592de352 (diff) | |
Add post-install configuration of symlink
| -rw-r--r-- | debian/postinst | 5 |
1 files 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) ;; |
