mirror of
https://github.com/mynodebtc/mynode.git
synced 2024-11-15 09:59:16 +00:00
20 lines
323 B
Desktop File
20 lines
323 B
Desktop File
# myNode background service
|
|
# /etc/systemd/system/background.service
|
|
|
|
[Unit]
|
|
Description=myNode Background Checks
|
|
After=network.target
|
|
|
|
[Service]
|
|
Type=simple
|
|
KillMode=control-group
|
|
TimeoutSec=30
|
|
Restart=always
|
|
RestartSec=30
|
|
ExecStart=/usr/bin/mynode_background.sh
|
|
User=root
|
|
Group=root
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|