summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <m.mairkeimberger@gmail.com>2019-01-13 15:03:12 +0100
committerPatrice Clement <monsieurp@gentoo.org>2019-01-21 23:50:38 +0100
commitc8dbdb1e60b3d6ce7a8e70e7092cff4af99b1ee6 (patch)
treec1d7989d17887c5ab80863fdd80cf48958a32587 /mail-filter
parentdev-python/texttable: remove old 1.5.0. (diff)
downloadgentoo-c8dbdb1e60b3d6ce7a8e70e7092cff4af99b1ee6.tar.gz
gentoo-c8dbdb1e60b3d6ce7a8e70e7092cff4af99b1ee6.tar.bz2
gentoo-c8dbdb1e60b3d6ce7a8e70e7092cff4af99b1ee6.zip
mail-filter/spamassassin: remove unused file.
Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger@gmail.com> Closes: https://github.com/gentoo/gentoo/pull/10822 Signed-off-by: Patrice Clement <monsieurp@gentoo.org>
Diffstat (limited to 'mail-filter')
-rw-r--r--mail-filter/spamassassin/files/3.4.1-spamd.init-r238
1 files changed, 0 insertions, 38 deletions
diff --git a/mail-filter/spamassassin/files/3.4.1-spamd.init-r2 b/mail-filter/spamassassin/files/3.4.1-spamd.init-r2
deleted file mode 100644
index c704782f3a4e..000000000000
--- a/mail-filter/spamassassin/files/3.4.1-spamd.init-r2
+++ /dev/null
@@ -1,38 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-command="/usr/sbin/spamd"
-pidfile="/run/spamd.pid"
-command_args="--pidfile=${pidfile} ${SPAMD_OPTS}"
-command_args_background="--daemonize"
-
-if ! [ "${SPAMD_RUN_AS_ROOT}" = "true" ]; then
- # Passing --username=root to spamd kills it, so if SPAMD_RUN_AS_ROOT
- # is true, then we want to pass no user/group command args at all.
- # Any value other than "true" gets the default user/group of "spamd".
- command_args="${command_args} --username=spamd --groupname=spamd"
-fi
-
-: ${SPAMD_NICELEVEL:=0}
-start_stop_daemon_args="--nicelevel ${SPAMD_NICELEVEL}"
-
-# Retry after SPAMD_TIMEOUT seconds because spamd can take a
-# while to kill off all of its children. This was bug 322025.
-: ${SPAMD_TIMEOUT:=15}
-retry="${SPAMD_TIMEOUT}"
-
-extra_started_commands="reload"
-
-depend() {
- before mta
- use logger mysql postgres
-}
-
-reload() {
- ebegin "Reloading configuration"
- # Warning: reload causes the PID of the spamd process to
- # change, but spamd does update its PID file afterwards.
- start-stop-daemon --signal HUP --pidfile "${pidfile}"
- eend $?
-}