diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2009-09-16 08:50:45 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2009-09-16 08:50:45 +0000 |
commit | de3802e73b0dca404795c5ff6b8de7eb082ddab0 (patch) | |
tree | e64a2d876f2215bcb274113f1c11e4a9ff196506 | |
parent | 324e6f4d4b96d4ee135ebb24fb90a8bf80d86b19 (diff) | |
download | aports-de3802e73b0dca404795c5ff6b8de7eb082ddab0.tar.bz2 aports-de3802e73b0dca404795c5ff6b8de7eb082ddab0.tar.xz |
main/testing/postgrey: start service after firewall
-rw-r--r-- | testing/postgrey/APKBUILD | 10 | ||||
-rw-r--r-- | testing/postgrey/postgrey.initd | 1 |
2 files changed, 5 insertions, 6 deletions
diff --git a/testing/postgrey/APKBUILD b/testing/postgrey/APKBUILD index 71dc8c5865..7568114388 100644 --- a/testing/postgrey/APKBUILD +++ b/testing/postgrey/APKBUILD @@ -2,18 +2,17 @@ # Maintainer: Michael Mason <ms13sp@gmail.com> pkgname=postgrey pkgver=1.32 -pkgrel=0 +pkgrel=1 pkgdesc="Postfix policy server implementing greylisting" url="http://postgrey.schweikert.ch/" license="GPL" depends="perl perl-db perl-net-dns perl-net-server" makedepends="" -install= +install=postgrey.pre-install subpackages="" source="http://postgrey.schweikert.ch/pub/$pkgname-$pkgver.tar.gz postgrey.confd - postgrey.initd - postgrey.pre-install" + postgrey.initd" #still need PERL-IO Multiplex and PERL-PARSE-SYSLOG and NET-RBLClient build() { cd "$srcdir"/$pkgname-$pkgver @@ -31,5 +30,4 @@ build() { md5sums="524a4e165bf997996f3bccade394712f postgrey-1.32.tar.gz caaad5770ab07fb5af3bbd522a05b84f postgrey.confd -3bf81886c02d2879c1310bf1027e9c07 postgrey.initd -4231489e2cfbbb4b0a354826cbe40695 postgrey.pre-install" +d0611b244202c77ad7ad79862721a738 postgrey.initd" diff --git a/testing/postgrey/postgrey.initd b/testing/postgrey/postgrey.initd index d38538de17..c9e51ceba9 100644 --- a/testing/postgrey/postgrey.initd +++ b/testing/postgrey/postgrey.initd @@ -9,6 +9,7 @@ opts="${opts} reload" depend() { need net + after firewall before postfix provide postfix_greylist } |