Merge #11952: [qa] univalue: Bump subtree
[bitcoinplatinum.git] / contrib / init / bitcoind.service
blobee113d7615c2625ac49429d473127bc992e05dfc
1 # It is not recommended to modify this file in-place, because it will
2 # be overwritten during package upgrades. If you want to add further
3 # options or overwrite existing ones then use
4 # $ systemctl edit bitcoind.service
5 # See "man systemd.service" for details.
7 # Note that almost all daemon options could be specified in
8 # /etc/bitcoin/bitcoin.conf
10 [Unit]
11 Description=Bitcoin daemon
12 After=network.target
14 [Service]
15 ExecStart=/usr/bin/bitcoind -daemon -conf=/etc/bitcoin/bitcoin.conf -pid=/run/bitcoind/bitcoind.pid
16 # Creates /run/bitcoind owned by bitcoin
17 RuntimeDirectory=bitcoind
18 User=bitcoin
19 Type=forking
20 PIDFile=/run/bitcoind/bitcoind.pid
21 Restart=on-failure
22 PrivateTmp=true
24 [Install]
25 WantedBy=multi-user.target