supervisord.service 246 B

1234567891011
  1. [Unit]
  2. Description=Supervisor daemon
  3. [Service]
  4. Type=forking
  5. ExecStart=/bin/supervisord -c /etc/supervisord.conf
  6. ExecStop=/bin/supervisorctl shutdown
  7. ExecReload=/bin/supervisorctl reload
  8. KillMode=process
  9. Restart=on-failure
  10. RestartSec=42s
  11. [Install]