mirror of
https://github.com/rootzoll/raspiblitz.git
synced 2024-11-20 10:12:06 +01:00
26 lines
640 B
Desktop File
26 lines
640 B
Desktop File
# RaspiBlitz: systemd unit for bitcoind
|
|
|
|
[Unit]
|
|
Description=Bitcoin daemon
|
|
Wants=bootstrap.service
|
|
After=bootstrap.service
|
|
|
|
# for use with sendmail alert (coming soon)
|
|
#OnFailure=systemd-sendmail@%n
|
|
|
|
[Service]
|
|
User=bitcoin
|
|
Group=bitcoin
|
|
Type=forking
|
|
PIDFile=/home/bitcoin/.bitcoin/bitcoind.pid
|
|
ExecStartPre=-/home/admin/config.scripts/blitz.systemd.sh log blockchain STARTED
|
|
ExecStart=/usr/local/bin/bitcoind -daemon -conf=/home/bitcoin/.bitcoin/bitcoin.conf -pid=/home/bitcoin/.bitcoin/bitcoind.pid
|
|
KillMode=process
|
|
Restart=always
|
|
TimeoutSec=120
|
|
RestartSec=30
|
|
StandardOutput=null
|
|
StandardError=journal
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target |