mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 04:22:55 +01:00
337105e00f
79ddfad
Apply hardening measurements in bitcoind systemd service file (Florian Schmaus)
Pull request description:
Adds typical systemd hardening measurements for network services.
Tree-SHA512: 63e54d5a2e3e625c123c91e4392474226ec26c48709f2627f4d9d257a59f6960dd53ba4faa10cd355a89cad37fe351e2dbe8db79e681645b59081cf83e940438
45 lines
1.2 KiB
Desktop File
45 lines
1.2 KiB
Desktop File
# 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
|
|
|
|
[Unit]
|
|
Description=Dash daemon
|
|
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
|
|
Type=forking
|
|
PIDFile=/run/dashd/dashd.pid
|
|
Restart=on-failure
|
|
|
|
# Hardening measures
|
|
####################
|
|
|
|
# Provide a private /tmp and /var/tmp.
|
|
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
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|