diff options
author | Ralph Seichter <github@seichter.de> | 2021-12-06 19:34:07 +0100 |
---|---|---|
committer | Ionen Wolkens <ionen@gentoo.org> | 2021-12-09 01:40:35 -0500 |
commit | 6f2a914378e0023eccccdc9a4fbf280419fac469 (patch) | |
tree | 584d564ef8be1f88346cb0f1dc4def0f17972e6b /net-mail/automx2/files | |
parent | app-antivirus/fangfrisch: Remove obsolete ebuild (diff) | |
download | gentoo-6f2a914378e0023eccccdc9a4fbf280419fac469.tar.gz gentoo-6f2a914378e0023eccccdc9a4fbf280419fac469.tar.bz2 gentoo-6f2a914378e0023eccccdc9a4fbf280419fac469.zip |
net-mail/automx2: Remove obsolete ebuild
automx2-2021.5.ebuild has been stabilised.
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Ralph Seichter <gentoo@seichter.de>
Closes: https://github.com/gentoo/gentoo/pull/23201
Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
Diffstat (limited to 'net-mail/automx2/files')
-rw-r--r-- | net-mail/automx2/files/init | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/net-mail/automx2/files/init b/net-mail/automx2/files/init deleted file mode 100644 index 466461a6cd93..000000000000 --- a/net-mail/automx2/files/init +++ /dev/null @@ -1,26 +0,0 @@ -#!/sbin/openrc-run -# Copyright 1999-2019 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="@EPYTHON@" - export FLASK_APP="automx2.server:app" - export FLASK_ENV="production" -} |