From e5a09027e5b92e539ed4f992c60cee678074bc32 Mon Sep 17 00:00:00 2001 From: Ariel Rin Date: Sat, 7 Oct 2023 21:53:03 +1000 Subject: [PATCH] Remove outdated supervisor configs - refer to docs --- thirdparty/Supervisor/auth-mumble.conf | 13 ------------ thirdparty/Supervisor/auth.conf | 28 -------------------------- 2 files changed, 41 deletions(-) delete mode 100644 thirdparty/Supervisor/auth-mumble.conf delete mode 100644 thirdparty/Supervisor/auth.conf diff --git a/thirdparty/Supervisor/auth-mumble.conf b/thirdparty/Supervisor/auth-mumble.conf deleted file mode 100644 index 8389e377..00000000 --- a/thirdparty/Supervisor/auth-mumble.conf +++ /dev/null @@ -1,13 +0,0 @@ -[program:auth-mumble] -command=python authenticator.py -directory=/home/allianceserver/allianceauth/thirdparty/Mumble -user=allianceserver -numprocs=1 -stdout_logfile=/home/allianceserver/allianceauth/log/authenticator.log -stderr_logfile=/home/allianceserver/allianceauth/log/authenticator.log -autostart=true -autorestart=true -startsecs=10 -stopwaitsecs = 600 -killasgroup=true -priority=500 diff --git a/thirdparty/Supervisor/auth.conf b/thirdparty/Supervisor/auth.conf deleted file mode 100644 index 8124d559..00000000 --- a/thirdparty/Supervisor/auth.conf +++ /dev/null @@ -1,28 +0,0 @@ -[program:celerybeat] -command=celery -A alliance_auth beat -directory=/home/allianceserver/allianceauth -user=allianceserver -stdout_logfile=/home/allianceserver/allianceauth/log/beat.log -stderr_logfile=/home/allianceserver/allianceauth/log/beat.log -autostart=true -autorestart=true -startsecs=10 -priority=998 - -[program:celeryd] -command=celery -A alliance_auth worker -directory=/home/allianceserver/allianceauth -user=allianceserver -numprocs=1 -stdout_logfile=/home/allianceserver/allianceauth/log/worker.log -stderr_logfile=/home/allianceserver/allianceauth/log/worker.log -autostart=true -autorestart=true -startsecs=10 -stopwaitsecs = 600 -killasgroup=true -priority=998 - -[group:auth] -programs=celerybeat,celeryd -priority=999