mirror of
https://github.com/mynodebtc/mynode.git
synced 2024-11-15 18:02:49 +00:00
29 lines
556 B
Desktop File
29 lines
556 B
Desktop File
# sphinxrelay service
|
|
# /etc/systemd/system/sphinxrelay.service
|
|
|
|
[Unit]
|
|
Description=Sphinx Relay
|
|
Wants=lnd.service
|
|
After=lnd.service
|
|
|
|
[Service]
|
|
ExecStartPre=/usr/bin/is_not_shutting_down.sh
|
|
ExecStartPre=/usr/bin/wait_on_lnd.sh
|
|
ExecStartPre=+/usr/bin/mynode_pre_sphinxrelay.sh
|
|
WorkingDirectory=/opt/mynode/sphinxrelay
|
|
ExecStart=npm run prod
|
|
|
|
User=bitcoin
|
|
Group=bitcoin
|
|
Type=simple
|
|
KillMode=control-group
|
|
TimeoutSec=60
|
|
Restart=always
|
|
RestartSec=30
|
|
StandardOutput=syslog
|
|
StandardError=syslog
|
|
SyslogIdentifier=sphinxrelay
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|