2021-02-10 05:37:43 +00:00
|
|
|
# CKBunker service
|
|
|
|
# /etc/systemd/system/ckbunker.service
|
|
|
|
|
|
|
|
[Unit]
|
|
|
|
Description=CKBunker
|
2021-04-11 00:51:26 +00:00
|
|
|
Wants=bitcoin.service
|
|
|
|
After=bitcoin.service
|
2021-02-10 05:37:43 +00:00
|
|
|
|
|
|
|
[Service]
|
|
|
|
ExecStartPre=/usr/bin/is_not_shutting_down.sh
|
|
|
|
ExecStartPre=/usr/bin/wait_on_bitcoin.sh
|
|
|
|
WorkingDirectory=/opt/mynode/ckbunker
|
|
|
|
ExecStart=/bin/bash -c 'source env/bin/activate && ck-bunker run -c /mnt/hdd/mynode/ckbunker/settings.yaml'
|
|
|
|
|
|
|
|
User=bitcoin
|
|
|
|
Group=bitcoin
|
|
|
|
Type=simple
|
|
|
|
TimeoutSec=120
|
|
|
|
Restart=always
|
|
|
|
RestartSec=30
|
|
|
|
StandardOutput=syslog
|
|
|
|
StandardError=syslog
|
2021-05-12 00:43:39 +00:00
|
|
|
SyslogIdentifier=ckbunker
|
2021-02-10 05:37:43 +00:00
|
|
|
|
|
|
|
[Install]
|
|
|
|
WantedBy=multi-user.target
|