commit: d97050eda5e5028c446bfcb6afa11486b7cdc030
Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
AuthorDate: Fri Mar 1 17:05:51 2019 +0000
Commit: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
CommitDate: Sat Mar 2 04:18:57 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d97050ed
mail-filter/amavisd-new: remove unused file
Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail.com>
Signed-off-by: Michael Orlitzky <mjo <AT> gentoo.org>
mail-filter/amavisd-new/files/amavisd-snmp.initd | 31 ------------------------
1 file changed, 31 deletions(-)
diff --git a/mail-filter/amavisd-new/files/amavisd-snmp.initd
b/mail-filter/amavisd-new/files/amavisd-snmp.initd
deleted file mode 100644
index fc23a1fc101..00000000000
--- a/mail-filter/amavisd-new/files/amavisd-snmp.initd
+++ /dev/null
@@ -1,31 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-name="amavisd-snmp"
-pidfile="/run/amavis/${name}.pid"
-command="/usr/sbin/${name}-subagent"
-command_args="${amavis_snmp_args} -P ${pidfile}"
-start_stop_daemon_args="--interpreted"
-
-update_command() {
- if [[ -x ${command}-zmq && ! $amavisd_snmp_command ]]; then
- command="${command}-zmq"
- elif [[ $amavisd_snmp_command ]]; then
- command="$amavisd_snmp_command"
- fi
-}
-
-depend() {
- use logger
- before amavisd-new snmpd
- update_command
- if [[ ${command##*-} == "zmq" ]]; then
- need amavis-mc
- fi
-}
-
-start_pre() {
- update_command
- checkpath -d -o amavis /run/amavis
-}