diff options
author | Chris White <chriswhite@gentoo.org> | 2005-08-15 22:16:50 +0000 |
---|---|---|
committer | Chris White <chriswhite@gentoo.org> | 2005-08-15 22:16:50 +0000 |
commit | 2c406e958f3ed8b34a69b02a83d149f76e27dce6 (patch) | |
tree | 6c4a4252e28c3717ec36cf93cb3ab804c437947f /net-dns | |
parent | Initial commit to the tree. This closes bug #39975. Thanks to Martin Hierli... (diff) | |
download | gentoo-2-2c406e958f3ed8b34a69b02a83d149f76e27dce6.tar.gz gentoo-2-2c406e958f3ed8b34a69b02a83d149f76e27dce6.tar.bz2 gentoo-2-2c406e958f3ed8b34a69b02a83d149f76e27dce6.zip |
Misc fixes after the commit. Details in #39975.
(Portage version: 2.0.51.22-r2)
Diffstat (limited to 'net-dns')
-rw-r--r-- | net-dns/rbldnsd/ChangeLog | 6 | ||||
-rw-r--r-- | net-dns/rbldnsd/Manifest | 16 | ||||
-rw-r--r-- | net-dns/rbldnsd/files/confd | 2 | ||||
-rw-r--r-- | net-dns/rbldnsd/rbldnsd-0.995.ebuild | 8 |
4 files changed, 14 insertions, 18 deletions
diff --git a/net-dns/rbldnsd/ChangeLog b/net-dns/rbldnsd/ChangeLog index 1bd051882a3d..19e763007811 100644 --- a/net-dns/rbldnsd/ChangeLog +++ b/net-dns/rbldnsd/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-dns/rbldnsd # Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-dns/rbldnsd/ChangeLog,v 1.1 2005/08/15 22:05:32 chriswhite Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-dns/rbldnsd/ChangeLog,v 1.2 2005/08/15 22:16:50 chriswhite Exp $ + + 15 Aug 2005; Chris White <chriswhite@gentoo.org> files/confd, + rbldnsd-0.995.ebuild: + Misc fixes after the commit. Details in #39975. *rbldnsd-0.995 (15 Aug 2005) diff --git a/net-dns/rbldnsd/Manifest b/net-dns/rbldnsd/Manifest index ce4a0f226bd3..c98242d78761 100644 --- a/net-dns/rbldnsd/Manifest +++ b/net-dns/rbldnsd/Manifest @@ -1,17 +1,7 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA1 - -MD5 6d85a798f58d0d6cf811227109f72354 rbldnsd-0.995.ebuild 996 +MD5 5c7ad65248b046c314c7df7eb8f9efef rbldnsd-0.995.ebuild 1029 MD5 ac6ea19228e1f51f8f58e80b4bb85eaa metadata.xml 1069 -MD5 b1748aac8ac7857bbab68b43ef495823 ChangeLog 479 -MD5 39b8b3c62c59df6d3ddbedc84e11ef9b files/confd 634 +MD5 98bb6e7938855c996c202e0fa92ebed4 ChangeLog 619 +MD5 0b5faddf5429d76570ae12d02b9aa0fd files/confd 635 MD5 1c33419fe27dc0734d6dd55204f1979d files/example 495 MD5 edc6a1efd2f4ae0f0140e976de8a40c6 files/initd 475 MD5 bfb7395472a78a3c734d2107a165a85f files/digest-rbldnsd-0.995 65 ------BEGIN PGP SIGNATURE----- -Version: GnuPG v1.4.2 (GNU/Linux) - -iD8DBQFDAQq1FdQwWVoAgN4RAlZrAJ9uKtbgkoEn2KoWtEC0X0uaVQfGbgCgqHye -sIJZbX7eJGZ0sy5Er1wkPOY= -=TbwZ ------END PGP SIGNATURE----- diff --git a/net-dns/rbldnsd/files/confd b/net-dns/rbldnsd/files/confd index f898a14c330e..ccbe1e91da0d 100644 --- a/net-dns/rbldnsd/files/confd +++ b/net-dns/rbldnsd/files/confd @@ -2,7 +2,7 @@ # options for rbldnsd # # for initial testing, copy example zone file to /var/db/rbldnsd -# NOTE: make sure nothing litens on 127.0.0.1:53 +# NOTE: make sure nothing listens on 127.0.0.1:53 # # OPTIONS="-q -r /var/db/rbldnsd -b 127.0.0.1 \ # -u rbldns -p /var/run/rbldnsd.pid \ diff --git a/net-dns/rbldnsd/rbldnsd-0.995.ebuild b/net-dns/rbldnsd/rbldnsd-0.995.ebuild index ca1836675792..81bbbbd140b1 100644 --- a/net-dns/rbldnsd/rbldnsd-0.995.ebuild +++ b/net-dns/rbldnsd/rbldnsd-0.995.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-dns/rbldnsd/rbldnsd-0.995.ebuild,v 1.1 2005/08/15 22:05:32 chriswhite Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-dns/rbldnsd/rbldnsd-0.995.ebuild,v 1.2 2005/08/15 22:16:50 chriswhite Exp $ inherit eutils DESCRIPTION="a DNS daemon which is designed to serve DNSBL zones" @@ -30,8 +30,10 @@ src_install() { } pkg_postinst() { - enewgroup rbldns 800 - enewuser rbldns 800 /bin/false /var/db/rbldnsd rbldns + enewgroup rbldns + enewuser rbldns -1 /bin/false /var/db/rbldnsd rbldns + chown rbldns:rbldns /var/db/rbldnsd + einfo "for testing purpose, example zone file has been installed" einfo "see /usr/share/doc/${PF}/example." } |