Last active
July 24, 2019 07:23
-
-
Save RoccoHoward/b3c8ca66721f547d1aeed5ece1823a45 to your computer and use it in GitHub Desktop.
/lib/systemd/system/supervisord
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
[Unit] | |
Description=Supervisor daemon | |
Documentation=http://supervisord.org | |
After=network.target | |
[Service] | |
ExecStart=/usr/local/bin/supervisord -n -c /etc/supervisor/supervisord.conf | |
ExecStop=/usr/local/bin/supervisorctl $OPTIONS shutdown | |
ExecReload=/usr/local/bin/supervisorctl $OPTIONS reload | |
KillMode=process | |
Restart=on-failure | |
RestartSec=42s | |
[Install] | |
WantedBy=multi-user.target | |
Alias=supervisord.service |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment