mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-03 22:07:18 +08:00
18 lines
473 B
SYSTEMD
18 lines
473 B
SYSTEMD
|
[Unit]
|
||
|
Description=Bitcoin Daemon
|
||
|
Conflicts=bitcoin-reindex.service
|
||
|
After=network.target
|
||
|
|
||
|
[Service]
|
||
|
User=bitcoin
|
||
|
Group=bitcoin
|
||
|
ExecStart=/usr/bin/bitcoind -daemon=0 \
|
||
|
-conf=/etc/bitcoin/bitcoin.conf \
|
||
|
-datadir=/srv/bitcoin \
|
||
|
-pid=/run/bitcoind.pid
|
||
|
ExecReload=/usr/bin/kill -HUP $MAINPID
|
||
|
ExecStop=/usr/bin/bitcoind stop
|
||
|
|
||
|
[Install]
|
||
|
WantedBy=multi-user.target
|