mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-07-16 05:43:54 +03:00
[PR #3690] Fix left /usr/bin/jellyfin symlink on removal and typo #9658
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Original Pull Request: https://github.com/jellyfin/jellyfin/pull/3690
State: closed
Merged: Yes
Changes
After removal of the symlink target file "/usr/lib/jellyfin/bin/jellyfin", file existence check on the symlink " -f /usr/bin/jellyfin " returns false. As a result the symlink is left in place on package purge. The correct check would be " -L /usr/bin/jellyfin ", but since it could be a file in cases, e.g. manual fix on file systems with no symlink support or for any other reason, it is easiest to use "rm -f" to assure that it is removed in both cases and not return false even if it does not exist at all.
Additionally this fixes a typo on upstart script check.