2025-08-22, 02:03 PM
(This post was last modified: 2025-08-22, 02:06 PM by AbendrotBarbecue. Edited 1 time in total.)
Okay, found a solution but it's probably not a good one.
I looked into the command that was stopping it (polkit) and found this link:
https://bbs.archlinux.org/viewtopic.php?id=304468
Which lead me to make the same file but with tweaks like so:
Is it wise? Probably not, no, but it works, and that's about all I can ask.
Sorry! Was typing right when you sent that. I figured out the specific program that was causing it so I can confirm it's no fault of Jellyfins! This was actually an issue with Polkit (why now I don't know, but I know it's probably out of the scope of this forum! Sorry...!)
I looked into the command that was stopping it (polkit) and found this link:
https://bbs.archlinux.org/viewtopic.php?id=304468
Which lead me to make the same file but with tweaks like so:
Code:
polkit.addRule(function(action, subject) {
if (action.id == "org.freedesktop.systemd1.manage-units")
{
return polkit.Result.YES;
}
});
Is it wise? Probably not, no, but it works, and that's about all I can ask.
(2025-08-22, 02:02 PM)crobibero Wrote: It might be a permissions issue, I suggest adding the server logs as they would likely show why Jellyfin failed to restart
Sorry! Was typing right when you sent that. I figured out the specific program that was causing it so I can confirm it's no fault of Jellyfins! This was actually an issue with Polkit (why now I don't know, but I know it's probably out of the scope of this forum! Sorry...!)