From 8b1b4a72a65ee7f553438e393fafbe2ed7a488f3 Mon Sep 17 00:00:00 2001 From: Mike Preston Date: Sun, 5 Feb 2023 20:33:34 +0000 Subject: [PATCH] Create supervisord.service-Debian11 --- supervisord.service-Debian11 | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 supervisord.service-Debian11 diff --git a/supervisord.service-Debian11 b/supervisord.service-Debian11 new file mode 100644 index 0000000..04a7e90 --- /dev/null +++ b/supervisord.service-Debian11 @@ -0,0 +1,16 @@ +# supervisord service for systemd (Debian 11) +# by DarkFlib (https://github.com/darkflib) +[Unit] +Description=Supervisor daemon + +[Service] +Type=forking +ExecStart=/usr/local/bin/supervisord $OPTIONS -c /etc/supervisord.conf +ExecStop=/usr/local/bin/supervisorctl $OPTIONS shutdown +ExecReload=/usr/local/bin/supervisorctl $OPTIONS reload +KillMode=process +Restart=on-failure +RestartSec=30s + +[Install] +WantedBy=multi-user.target