forked from pool/parsec
Guillaume GARDET
fad872c73b
Automatic systemd hardening effort by the security team. This has not been tested. For details please see https://en.opensuse.org/openSUSE:Security_Features#Systemd_hardening_effort OBS-URL: https://build.opensuse.org/request/show/925351 OBS-URL: https://build.opensuse.org/package/show/security/parsec?expand=0&rev=16
26 lines
677 B
Desktop File
26 lines
677 B
Desktop File
[Unit]
|
|
Description=Parsec Service
|
|
Documentation=https://parallaxsecond.github.io/parsec-book/parsec_service/install_parsec_linux.html
|
|
|
|
[Service]
|
|
# added automatically, for details please see
|
|
# https://en.opensuse.org/openSUSE:Security_Features#Systemd_hardening_effort
|
|
ProtectSystem=full
|
|
ProtectHome=true
|
|
ProtectHostname=true
|
|
ProtectKernelTunables=true
|
|
ProtectKernelModules=true
|
|
ProtectKernelLogs=true
|
|
ProtectControlGroups=true
|
|
RestrictRealtime=true
|
|
# end of automatic additions
|
|
Type=notify
|
|
KillMode=process
|
|
Restart=on-failure
|
|
WorkingDirectory=/var/lib/parsec
|
|
ExecStart=/usr/libexec/parsec -c /etc/parsec/config.toml
|
|
User=parsec
|
|
Group=parsec
|
|
|
|
[Install]
|
|
WantedBy=default.target |