commit: 973e6a9788619b5c79309f1a5a4c499b16209e68
Author: Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
AuthorDate: Wed Feb 26 07:50:51 2025 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Feb 26 09:00:15 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=973e6a97
net-mail/automx2: remove unused file
Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at>
Signed-off-by: Sam James <sam <AT> gentoo.org>
net-mail/automx2/files/init-r1 | 26 --------------------------
1 file changed, 26 deletions(-)
diff --git a/net-mail/automx2/files/init-r1 b/net-mail/automx2/files/init-r1
deleted file mode 100644
index 56878e8ca379..000000000000
--- a/net-mail/automx2/files/init-r1
+++ /dev/null
@@ -1,26 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-: ${AUTOMX2_CONF:="/etc/${RC_SVCNAME}.conf"}
-: ${AUTOMX2_USER:="automx2"}
-: ${AUTOMX2_ARGS:="--port 4243"}
-
-command="/usr/bin/python"
-command_args="/usr/bin/flask run ${AUTOMX2_ARGS}"
-command_background="true"
-command_user="${AUTOMX2_USER}"
-pidfile="/run/${RC_SVCNAME}.pid"
-required_files="${AUTOMX2_CONF}"
-
-depend() {
- use logger net
- before nginx
-}
-
-start_pre() {
- export AUTOMX2_CONF
- export EPYTHON="python"
- export FLASK_APP="automx2.server:app"
- export FLASK_ENV="production"
-}