2019-06-15 23:02:44 +00:00
|
|
|
# lndconnect qr code generation
|
|
|
|
# /etc/systemd/system/lndconnect.service
|
|
|
|
|
|
|
|
[Unit]
|
|
|
|
Description=LND Connect QR Code Generation
|
2019-11-11 02:15:43 +00:00
|
|
|
Wants=lnd.service
|
|
|
|
After=lnd.service
|
2019-06-15 23:02:44 +00:00
|
|
|
|
|
|
|
[Service]
|
|
|
|
ExecStart=/usr/bin/mynode_lndconnect.sh
|
|
|
|
|
2019-09-03 04:38:37 +00:00
|
|
|
User=root
|
|
|
|
Group=root
|
2019-06-15 23:02:44 +00:00
|
|
|
Type=simple
|
|
|
|
KillMode=control-group
|
|
|
|
LimitNOFILE=128000
|
|
|
|
TimeoutSec=30
|
|
|
|
Restart=always
|
|
|
|
RestartSec=30
|
|
|
|
StandardOutput=syslog
|
|
|
|
StandardError=syslog
|
|
|
|
SyslogIdentifier=lndconnect
|
|
|
|
|
|
|
|
[Install]
|
|
|
|
WantedBy=multi-user.target
|