summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTuan Van <langthang@gentoo.org>2005-06-29 15:12:13 +0000
committerTuan Van <langthang@gentoo.org>2005-06-29 15:12:13 +0000
commitcb04e622f69e175e3ffbd421794c205c2ccd1175 (patch)
tree68d9f167da78edeeaa0c613a52178dfdabb70760 /mail-mta
parentremove older + keyword x86 (diff)
downloadhistorical-cb04e622f69e175e3ffbd421794c205c2ccd1175.tar.gz
historical-cb04e622f69e175e3ffbd421794c205c2ccd1175.tar.bz2
historical-cb04e622f69e175e3ffbd421794c205c2ccd1175.zip
add missing postfix.rc file
Diffstat (limited to 'mail-mta')
-rw-r--r--mail-mta/postfix/Manifest11
-rw-r--r--mail-mta/postfix/files/postfix.rc6.2.2.430
2 files changed, 31 insertions, 10 deletions
diff --git a/mail-mta/postfix/Manifest b/mail-mta/postfix/Manifest
index 991764c6e7e4..52dd334c9f13 100644
--- a/mail-mta/postfix/Manifest
+++ b/mail-mta/postfix/Manifest
@@ -1,6 +1,3 @@
------BEGIN PGP SIGNED MESSAGE-----
-Hash: SHA1
-
MD5 545cc81e3f25e92de9c31d4b3bccb685 postfix-2.2.3-r1.ebuild 9671
MD5 d2f97ac7ba19997b4e588b28009d684d postfix-2.2.1.ebuild 9296
MD5 17007a983ae776242105a163124927e4 postfix-2.2.3.ebuild 9712
@@ -27,11 +24,5 @@ MD5 0726f3fb8ba3f25ea5bfc251d2d96cfb files/digest-postfix-2.2.3 135
MD5 ff949f18a6d77e67fba4ed20907d0592 files/digest-postfix-2.2.4 135
MD5 fd01735093dde1691a849d9bf002bf5c files/mailer.conf 408
MD5 a41e637c45f2bbc39a37d8f704722164 files/postfix.rc6.2.2.3 633
+MD5 8d7d372a5e867ebc0b1644ee19105e4e files/postfix.rc6.2.2.4 637
MD5 502e444ec6b9d6fb9bbef3bb0f5e284a files/smtp.pam 254
------BEGIN PGP SIGNATURE-----
-Version: GnuPG v1.4.1 (GNU/Linux)
-
-iD8DBQFCwrl35FrxP71izLARAqUwAJ0SZ0K722Vnz81NA5h34PfNArwvVACeMvsi
-9i1TaOJaynSnwMgcWStOAeU=
-=8c27
------END PGP SIGNATURE-----
diff --git a/mail-mta/postfix/files/postfix.rc6.2.2.4 b/mail-mta/postfix/files/postfix.rc6.2.2.4
new file mode 100644
index 000000000000..06c8f6023276
--- /dev/null
+++ b/mail-mta/postfix/files/postfix.rc6.2.2.4
@@ -0,0 +1,30 @@
+#!/sbin/runscript
+# Copyright 1999-2004 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/mail-mta/postfix/files/postfix.rc6.2.2.4,v 1.1 2005/06/29 15:12:13 langthang Exp $
+
+opts="${opts} reload"
+
+depend() {
+ need net
+ use logger dns ypbind amavisd mysql postgresql antivirus postfix_greylist
+ provide mta
+}
+
+start() {
+ ebegin "Starting postfix"
+ /usr/sbin/postfix start &>/dev/null
+ eend $?
+}
+
+stop() {
+ ebegin "Stopping postfix"
+ /usr/sbin/postfix stop &>/dev/null
+ eend $?
+}
+
+reload() {
+ ebegin "Reloading postfix"
+ /usr/sbin/postfix reload &>/dev/null
+ eend $?
+}