Last active
March 27, 2024 16:32
-
-
Save ryandotsmith/9a4af3a06d5bd95456305f04c5873c88 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# /etc/systemd/system/shovel.service | |
[Unit] | |
Description=shovel | |
After=network.target | |
[Service] | |
ExecStart=/bin/bash -c 'source /home/ubuntu/shovel.env; /home/ubuntu/shovel -config /home/ubuntu/shovel.json -l :8546' | |
Restart=always | |
RestartSec=5 | |
TimeoutSec=6000 | |
[Install] | |
WantedBy=multi-user.target |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment