mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
nixos/jitsi-meet: fix systemd protection flag warning
Fixes systemd warning: > /etc/systemd/system/jitsi-excalidraw.service:26: Failed to parse ProtectProc=true, ignoring: Invalid argument when Jitsi-Meet Excalidraw Backend is enabled. `ProtectProc=true` is not a thing according to man pages, `ProtectProc=noaccess` is the most restrictive setting and likely what was originally intentioned.
This commit is contained in:
parent
63b8f960a9
commit
1ec5da1a27
1 changed files with 1 additions and 1 deletions
|
|
@ -528,7 +528,7 @@ in
|
|||
ProtectSystem = "strict";
|
||||
ProtectClock = true;
|
||||
ProtectHome = true;
|
||||
ProtectProc = true;
|
||||
ProtectProc = "noaccess";
|
||||
ProtectKernelLogs = true;
|
||||
PrivateTmp = true;
|
||||
PrivateDevices = true;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue