Created
July 7, 2021 04:23
-
-
Save aleohl/3a7a5fed2d0112bbe2a24b37d026413d to your computer and use it in GitHub Desktop.
Chiadog + Chia Harvester Systemd Units
This file contains 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
[Unit] | |
Description=Chia Harvester | |
After=network.target | |
[Service] | |
Type=simple | |
User=chia | |
ExecStart=/home/chia/chia-blockchain/venv/bin/chia_harvester | |
Restart=on-failure | |
[Install] | |
WantedBy=multi-user.target |
This file contains 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
[Unit] | |
Description=Chiadog | |
After=network.target | |
[Service] | |
Type=simple | |
User=chia | |
ExecStart=/home/chia/chiadog/venv/bin/python3 main.py --config /home/chia/chiadog/config.yaml | |
Restart=on-failure | |
[Install] | |
WantedBy=multi-user.target |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment