Browse Source

Merge pull request #3690 from MichaIng/patch-1

Fix left /usr/bin/jellyfin symlink on removal and typo
Joshua M. Boniface 4 years ago
parent
commit
d454e8710d
1 changed files with 2 additions and 2 deletions
  1. 2 2
      debian/postrm

+ 2 - 2
debian/postrm

@@ -25,7 +25,7 @@ case "$1" in
   purge)
   purge)
     echo PURGE | debconf-communicate $NAME > /dev/null 2>&1 || true
     echo PURGE | debconf-communicate $NAME > /dev/null 2>&1 || true
 
 
-    if [[ -x "/etc/init.d/jellyfin" ]] || [[ -e "/etc/init/jellyfin.connf" ]]; then
+    if [[ -x "/etc/init.d/jellyfin" ]] || [[ -e "/etc/init/jellyfin.conf" ]]; then
       update-rc.d jellyfin remove >/dev/null 2>&1 || true
       update-rc.d jellyfin remove >/dev/null 2>&1 || true
     fi
     fi
 
 
@@ -54,7 +54,7 @@ case "$1" in
       rm -rf $PROGRAMDATA
       rm -rf $PROGRAMDATA
     fi
     fi
     # Remove binary symlink
     # Remove binary symlink
-    [[ -f /usr/bin/jellyfin ]] && rm /usr/bin/jellyfin
+    rm -f /usr/bin/jellyfin
     # Remove sudoers config
     # Remove sudoers config
     [[ -f /etc/sudoers.d/jellyfin-sudoers ]] && rm /etc/sudoers.d/jellyfin-sudoers
     [[ -f /etc/sudoers.d/jellyfin-sudoers ]] && rm /etc/sudoers.d/jellyfin-sudoers
     # Remove anything at the default locations; catches situations where the user moved the defaults
     # Remove anything at the default locations; catches situations where the user moved the defaults