From 78589faa6dbf525bc988fc8fb928fbe2bd1ebc05 Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Wed, 20 Nov 2024 22:07:34 -0500 Subject: [PATCH] Fix up failed-to-stop message --- debian/jellyfin-server.preinst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/jellyfin-server.preinst b/debian/jellyfin-server.preinst index 2713fb9..aa2217a 100644 --- a/debian/jellyfin-server.preinst +++ b/debian/jellyfin-server.preinst @@ -44,7 +44,7 @@ case "$1" in sleep 1 # if it's still running, show error if [[ -n "$(ps -p $JELLYFIN_PID -o pid=)" ]]; then - echo "Could not successfully stop JellyfinServer, please do so before uninstalling." + echo "Could not successfully stop Jellyfin, please do so before installing." exit 1 else [[ -f $PIDFILE ]] && rm $PIDFILE