26 lines
458 B
Desktop File
26 lines
458 B
Desktop File
# RTL service
|
|
# /etc/systemd/system/rtl.service
|
|
|
|
[Unit]
|
|
Description=RTL
|
|
Wants=bitcoind.service
|
|
After=bitcoind.service
|
|
|
|
[Service]
|
|
ExecStartPre=/usr/bin/is_not_shutting_down.sh
|
|
ExecStartPre=/usr/bin/wait_on_lnd.sh
|
|
WorkingDirectory=/opt/mynode/RTL
|
|
ExecStart=/usr/bin/node rtl
|
|
|
|
User=bitcoin
|
|
Group=bitcoin
|
|
Type=simple
|
|
TimeoutSec=240
|
|
Restart=always
|
|
RestartSec=60
|
|
StandardOutput=syslog
|
|
StandardError=syslog
|
|
SyslogIdentifier=rtl
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target |