Your message dated Fri, 30 May 2008 16:07:12 +0100
with message-id <[EMAIL PROTECTED]>
and subject line dnscvsutil has been removed from Debian, closing #129725
has caused the Debian Bug report #129725,
regarding mkrdns ignore master zone if preceeded by forward zone
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [EMAIL PROTECTED]
immediately.)
--
129725: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=129725
Debian Bug Tracking System
Contact [EMAIL PROTECTED] with problems
--- Begin Message ---
Package: dnscvsutil
Version: 0.10
Severity: normal
Tags: patch
X-Debbugs-CC: [EMAIL PROTECTED]
If the following pattern exist in the /etc/bind/named.conf file then
the master zone is ignored by the mkrdns script and no PTR records
will be generated for that zone (the master zone in the example below
is actually included from /var/lib/dnscvsutil/compiled/named-primary.conf
but is normalized to simplify the example).
zone "0.168.192.in-addr.arpa" {
type forward;
forward only;
forwarders { 192.168.0.40; };
};
zone "1.168.192.in-addr.arpa" {
type master;
file "/var/lib/dnscvsutil/compiled/arpa/1.168.192.in-addr.dom";
};
The patch below will fix this problem. Note that the fix works by
eliminating dot wildcards in the regular expression and therefore
avoid matching of multiple zone statements. The regex still presumes
a lot of things, but at least the patched regex works correctly within
those presumptions.
--- /usr/bin/mkrdns~ Tue Aug 28 16:01:12 2001
+++ /usr/bin/mkrdns Thu Jan 17 21:36:53 2002
@@ -258,7 +258,7 @@
# determine which domains and networks we are master for.
# this first regexp is *REALLY* a pain.
- foreach $i ( $config =~
m/\b(zone\s*".+?".*?{\s*type.+?;\s*file.+?;)/isg ) {
+ foreach $i ( $config =~
m/\b(zone\s+"[^"]+"\s*{\s*type\s+\S+?\s*;\s*file\s+"[^"]+"\s*;)/isg ) {
my($domain,$file) = ( $i=~/\"(.+?)\"/g );
my($type) = ( $i=~/type\s+(\S+?);/i );
--- End Message ---
--- Begin Message ---
Version: 0.10.2+rm
The dnscvsutil package has been removed from Debian testing, unstable and
experimental, so I am now closing the bugs that were still opened
against it.
For more information about this package's removal, read
http://bugs.debian.org/440616 . That bug might give the reasons why
this package was removed, and suggestions of possible replacements.
Don't hesitate to reply to this mail if you have any question.
Thank you for your contribution to Debian.
--
Marco Rodrigues
http://Marco.Tondela.org
--- End Message ---