From 962a7ee59cb68cc2b07cfe76203f11d728dc1bd2 Mon Sep 17 00:00:00 2001 From: MickLesk Date: Tue, 17 Mar 2026 20:44:40 +0100 Subject: [PATCH] fix(plex): restart service after update to apply new version After apt install updates the plexmediaserver package, the running service needs an explicit restart so the new version is loaded. Without this, users see the update succeed but Plex still shows the old version in the web interface. Ref #12993 --- ct/plex.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ct/plex.sh b/ct/plex.sh index 542256008..734860c23 100644 --- a/ct/plex.sh +++ b/ct/plex.sh @@ -79,6 +79,11 @@ function update_script() { $STD apt update $STD apt install -y plexmediaserver msg_ok "Updated Plex Media Server" + + msg_info "Restarting Plex Media Server" + systemctl restart plexmediaserver + msg_ok "Restarted Plex Media Server" + msg_ok "Updated successfully!" exit }