Created
February 4, 2021 09:31
-
-
Save orkunkl/7be9ac4782e9e245c9eeee257e14356b to your computer and use it in GitHub Desktop.
cosmovisor.service definition
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=cosmovisor | |
Requires=network-online.target | |
After=network-online.target | |
[Service] | |
TimeoutStartSec=5 | |
Restart=always | |
User=root | |
Group=root | |
Environment=DAEMON_HOME=/root/.wasmd | |
Environment=DAEMON_NAME=wasmd | |
Environment=DAEMON_RESTART_AFTER_UPGRADE=true | |
ExecStart=/usr/local/bin/cosmovisor start --rpc.laddr tcp://0.0.0.0:26657 --home /root/.wasmd | |
KillSignal=SIGKILL | |
[Install] | |
WantedBy=multi-user.target |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment