Gentoo Archives: gentoo-commits

From: Michael Orlitzky <mjo@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: mail-filter/amavisd-new/files/
Date: Sun, 18 Nov 2018 23:57:02
Message-Id: 1542583437.cdefbed60c214263ee9c13db3f29072709d363ad.mjo@gentoo
1 commit: cdefbed60c214263ee9c13db3f29072709d363ad
2 Author: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
3 AuthorDate: Sat Nov 17 14:56:05 2018 +0000
4 Commit: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
5 CommitDate: Sun Nov 18 23:23:57 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cdefbed6
7
8 mail-filter/amavisd-new: remove old (now-unused) OpenRC service script.
9
10 Signed-off-by: Michael Orlitzky <mjo <AT> gentoo.org>
11 Package-Manager: Portage-2.3.51, Repoman-2.3.11
12
13 mail-filter/amavisd-new/files/amavisd.initd | 45 -----------------------------
14 1 file changed, 45 deletions(-)
15
16 diff --git a/mail-filter/amavisd-new/files/amavisd.initd b/mail-filter/amavisd-new/files/amavisd.initd
17 deleted file mode 100644
18 index 4899296cc14..00000000000
19 --- a/mail-filter/amavisd-new/files/amavisd.initd
20 +++ /dev/null
21 @@ -1,45 +0,0 @@
22 -#!/sbin/openrc-run
23 -# Copyright 1999-2012 Gentoo Foundation
24 -# Distributed under the terms of the GNU General Public License v2
25 -
26 -extra_started_commands="reload"
27 -extra_commands="debug debug_sa"
28 -
29 -prog="/usr/sbin/amavisd"
30 -progname="amavisd-new"
31 -
32 -depend() {
33 - need net
34 - use logger antivirus snmpd
35 - before mta
36 -}
37 -
38 -start() {
39 - ebegin "Starting ${progname}"
40 - "${prog}" start
41 - eend $?
42 -}
43 -
44 -stop() {
45 - ebegin "Stopping ${progname}"
46 - "${prog}" stop 1>/dev/null
47 - eend $?
48 -}
49 -
50 -reload() {
51 - ebegin "Reloading ${progname}"
52 - "${prog}" reload 1>/dev/null
53 - eend $?
54 -}
55 -
56 -debug() {
57 - ebegin "Starting ${progname} in debug mode"
58 - "${prog}" debug
59 - eend $?
60 -}
61 -
62 -debug_sa() {
63 - ebegin "Starting ${progname} in debug-sa mode"
64 - "${prog}" debug-sa
65 - eend $?
66 -}