summarylogtreecommitdiffstats
path: root/litecoind.service
blob: a5f10107f3fa5b4cbff944e3a125316655e0df52 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
[Unit]
Description=Litecoin's distributed currency daemon
After=network.target

[Service]
User=litecoin
Group=litecoin
ConfigurationDirectory=litecoin
RuntimeDirectory=litecoin
StateDirectory=litecoin
StateDirectoryMode=0700

Type=forking
PIDFile=litecoin/litecoind.pid
ExecStart=/usr/bin/litecoind -daemon \
	-conf=${CONFIGURATION_DIRECTORY}/litecoin.conf \
	-pid=${RUNTIME_DIRECTORY}/litecoind.pid \
	-datadir=${STATE_DIRECTORY}
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