2019-12-23 00:00:23 +01:00
|
|
|
# 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
|
2019-08-29 05:40:10 +02:00
|
|
|
# /etc/dash/dash.conf, but keep in mind those explicitly
|
|
|
|
# specified as arguments in ExecStart= will override those in the
|
|
|
|
# config file.
|
2019-12-23 00:00:23 +01:00
|
|
|
|
2015-04-05 23:56:58 +02:00
|
|
|
[Unit]
|
2019-12-23 00:00:23 +01:00
|
|
|
Description=Dash daemon
|
2021-01-18 20:01:54 +01:00
|
|
|
Documentation=https://github.com/dashpay/dash/blob/master/doc/init.md
|
|
|
|
|
|
|
|
# https://www.freedesktop.org/wiki/Software/systemd/NetworkTarget/
|
|
|
|
After=network-online.target
|
|
|
|
Wants=network-online.target
|
2015-04-05 23:56:58 +02:00
|
|
|
|
|
|
|
[Service]
|
2021-03-22 15:14:00 +01:00
|
|
|
ExecStart=/usr/bin/dashd -daemonwait \
|
2019-02-04 19:51:00 +01:00
|
|
|
-pid=/run/dashd/dashd.pid \
|
|
|
|
-conf=/etc/dash/dash.conf \
|
|
|
|
-datadir=/var/lib/dashd
|
|
|
|
|
2019-08-29 05:40:10 +02:00
|
|
|
# Make sure the config directory is readable by the service user
|
|
|
|
PermissionsStartOnly=true
|
|
|
|
ExecStartPre=/bin/chgrp dashcore /etc/dash
|
|
|
|
|
2019-02-04 19:51:00 +01:00
|
|
|
# Process management
|
|
|
|
####################
|
|
|
|
|
2015-04-05 23:56:58 +02:00
|
|
|
Type=forking
|
2019-12-23 00:00:23 +01:00
|
|
|
PIDFile=/run/dashd/dashd.pid
|
|
|
|
Restart=on-failure
|
2021-03-22 15:14:00 +01:00
|
|
|
TimeoutStartSec=infinity
|
2019-10-08 11:38:29 +02:00
|
|
|
TimeoutStopSec=600
|
2018-03-14 14:47:49 +01:00
|
|
|
|
2019-02-04 19:51:00 +01:00
|
|
|
# Directory creation and permissions
|
|
|
|
####################################
|
|
|
|
|
|
|
|
# Run as dash:dash
|
|
|
|
User=dashcore
|
|
|
|
Group=dashcore
|
|
|
|
|
|
|
|
# /run/dashd
|
|
|
|
RuntimeDirectory=dashd
|
|
|
|
RuntimeDirectoryMode=0710
|
|
|
|
|
|
|
|
# /etc/dash
|
|
|
|
ConfigurationDirectory=dash
|
|
|
|
ConfigurationDirectoryMode=0710
|
|
|
|
|
|
|
|
# /var/lib/dashd
|
|
|
|
StateDirectory=dashd
|
|
|
|
StateDirectoryMode=0710
|
|
|
|
|
2018-03-14 14:47:49 +01:00
|
|
|
# Hardening measures
|
|
|
|
####################
|
|
|
|
|
|
|
|
# Provide a private /tmp and /var/tmp.
|
2015-04-05 23:56:58 +02:00
|
|
|
PrivateTmp=true
|
|
|
|
|
2018-03-14 14:47:49 +01:00
|
|
|
# Mount /usr, /boot/ and /etc read-only for the process.
|
|
|
|
ProtectSystem=full
|
|
|
|
|
2019-08-29 05:40:10 +02:00
|
|
|
# Deny access to /home, /root and /run/user
|
|
|
|
ProtectHome=true
|
|
|
|
|
2018-03-14 14:47:49 +01:00
|
|
|
# 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
|