forked from pool/sccache
19d6387573
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/932185 OBS-URL: https://build.opensuse.org/package/show/devel:languages:rust/sccache?expand=0&rev=5
31 lines
712 B
Desktop File
31 lines
712 B
Desktop File
[Unit]
|
|
Description=sccache-dist builder
|
|
After=chronyd.service ntpd.service network-online.target
|
|
|
|
[Service]
|
|
# added automatically, for details please see
|
|
# https://en.opensuse.org/openSUSE:Security_Features#Systemd_hardening_effort
|
|
ProtectSystem=full
|
|
ProtectHome=read-only
|
|
PrivateDevices=true
|
|
ProtectHostname=true
|
|
ProtectClock=true
|
|
ProtectKernelTunables=true
|
|
ProtectKernelModules=true
|
|
ProtectKernelLogs=true
|
|
ProtectControlGroups=true
|
|
RestrictRealtime=true
|
|
# end of automatic additions
|
|
User=0
|
|
Type=simple
|
|
CacheDirectory=sccache-builder
|
|
Environment="RUST_LOG=sccache=info"
|
|
Environment="SCCACHE_NO_DAEMON=1"
|
|
ExecStart=sccache-dist server --config /etc/sccache/builder.conf
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|
|
|
|
|
|
|