31 lines
712 B
SYSTEMD
31 lines
712 B
SYSTEMD
|
[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
|
||
|
|
||
|
|
||
|
|