summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Orlitzky <mjo@gentoo.org>2018-11-17 09:56:05 -0500
committerMichael Orlitzky <mjo@gentoo.org>2018-11-18 18:23:57 -0500
commitcdefbed60c214263ee9c13db3f29072709d363ad (patch)
treec389860a1bf01e300b80615a645c57f5a7b1ae39
parentmail-filter/amavisd-new: remove old "unused" versions. (diff)
downloadgentoo-cdefbed6.tar.gz
gentoo-cdefbed6.tar.bz2
gentoo-cdefbed6.zip
mail-filter/amavisd-new: remove old (now-unused) OpenRC service script.
Signed-off-by: Michael Orlitzky <mjo@gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11
-rw-r--r--mail-filter/amavisd-new/files/amavisd.initd45
1 files changed, 0 insertions, 45 deletions
diff --git a/mail-filter/amavisd-new/files/amavisd.initd b/mail-filter/amavisd-new/files/amavisd.initd
deleted file mode 100644
index 4899296cc140..000000000000
--- a/mail-filter/amavisd-new/files/amavisd.initd
+++ /dev/null
@@ -1,45 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-extra_started_commands="reload"
-extra_commands="debug debug_sa"
-
-prog="/usr/sbin/amavisd"
-progname="amavisd-new"
-
-depend() {
- need net
- use logger antivirus snmpd
- before mta
-}
-
-start() {
- ebegin "Starting ${progname}"
- "${prog}" start
- eend $?
-}
-
-stop() {
- ebegin "Stopping ${progname}"
- "${prog}" stop 1>/dev/null
- eend $?
-}
-
-reload() {
- ebegin "Reloading ${progname}"
- "${prog}" reload 1>/dev/null
- eend $?
-}
-
-debug() {
- ebegin "Starting ${progname} in debug mode"
- "${prog}" debug
- eend $?
-}
-
-debug_sa() {
- ebegin "Starting ${progname} in debug-sa mode"
- "${prog}" debug-sa
- eend $?
-}