Fix systemd service (#275)

This format is not recognized by systemd. As shown in the following log:

/etc/systemd/system/redlib.service:33: System call ~@privileged is not known, ignoring.
/etc/systemd/system/redlib.service:33: System call ~@resources is not known, ignoring.
This commit is contained in:
Guanran Wang 2024-10-02 03:55:42 +08:00 committed by GitHub
parent e57eaa0b78
commit 604db902e9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -30,7 +30,8 @@ RestrictNamespaces=yes
RestrictRealtime=yes RestrictRealtime=yes
RestrictSUIDSGID=yes RestrictSUIDSGID=yes
SystemCallArchitectures=native SystemCallArchitectures=native
SystemCallFilter=@system-service ~@privileged ~@resources SystemCallFilter=@system-service
SystemCallFilter=~@privileged @resources
UMask=0077 UMask=0077
[Install] [Install]