dash/contrib/init/dashd.service

45 lines
1.2 KiB
SYSTEMD
Raw Normal View History

# It is not recommended to modify this file in-place, because it will
# be overwritten during package upgrades. If you want to add further
# options or overwrite existing ones then use
# $ systemctl edit dashd.service
# See "man systemd.service" for details.
# Note that almost all daemon options could be specified in
# /etc/dash/dash.conf
2015-04-05 23:56:58 +02:00
[Unit]
Description=Dash daemon
2015-04-05 23:56:58 +02:00
After=network.target
[Service]
ExecStart=/usr/bin/dashd -daemon -conf=/etc/dash/dash.conf -pid=/run/dashd/dashd.pid
# Creates /run/dash owned by dashcore
RuntimeDirectory=dashd
User=dashcore
2015-04-05 23:56:58 +02:00
Type=forking
PIDFile=/run/dashd/dashd.pid
Restart=on-failure
# Hardening measures
####################
# Provide a private /tmp and /var/tmp.
2015-04-05 23:56:58 +02:00
PrivateTmp=true
# Mount /usr, /boot/ and /etc read-only for the process.
ProtectSystem=full
# Disallow the process and all of its children to gain
# new privileges through execve().
NoNewPrivileges=true
# Use a new /dev namespace only populated with API pseudo devices
# such as /dev/null, /dev/zero and /dev/random.
PrivateDevices=true
# Deny the creation of writable and executable memory mappings.
MemoryDenyWriteExecute=true
2015-04-05 23:56:58 +02:00
[Install]
WantedBy=multi-user.target