diff options
author | Edwin Groothuis <edwin@FreeBSD.org> | 2003-09-05 07:41:35 +0000 |
---|---|---|
committer | Edwin Groothuis <edwin@FreeBSD.org> | 2003-09-05 07:41:35 +0000 |
commit | e1906e85ed4521c96066ce130869615c304c2a7a (patch) | |
tree | 2168725e487d131fef0e49ba7dfdd230e3466624 /net/h2n/files/patch-aa | |
parent | Chase repocopies towards ports/dns (diff) |
Massive repo-copies request: net->dns (partly devel->dns)
The category "dns" has been added, now is the time to move
the dns-related ports to the new world. Is there anyone who
is brave enough to complete this difficult job? ;)
PR: ports/56020
Submitted by: Kimura Fuyuki <fuyuki@nigredo.org>
Approved by: portmgr
Notes
Notes:
svn path=/head/; revision=88582
Diffstat (limited to 'net/h2n/files/patch-aa')
-rw-r--r-- | net/h2n/files/patch-aa | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/net/h2n/files/patch-aa b/net/h2n/files/patch-aa deleted file mode 100644 index 98e5c79874ae..000000000000 --- a/net/h2n/files/patch-aa +++ /dev/null @@ -1,31 +0,0 @@ ---- h2n.orig Sun Apr 9 02:29:50 2000 -+++ h2n Sun Apr 9 02:32:19 2000 -@@ -20,6 +20,7 @@ - $dontdodomains = 0; - $Bootfile = "./named.boot"; - $Domain = ""; -+$DomainAddress = ""; - $Hostfile = "/etc/hosts"; - $Commentfile = ""; - $Commentfileread = 0; -@@ -395,6 +396,10 @@ - foreach $s (@Servers) { - print $file " IN NS $s\n"; - } -+ if ($DomainAddress ne "") { -+ print $file " IN A $DomainAddress"; -+ } -+ - print $file "\n"; - } - -@@ -628,6 +633,9 @@ - - } elsif ($option eq "-h"){ - $Host = $args[++$i]; -+ -+ } elsif ($option eq "-a"){ -+ $DomainAddress = $args[++$i]; - - } elsif ($option eq "-o"){ - if ( $args[++$i] !~ /^[:\d]*$/ |