dns_add_script
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
dns_add_script [2009/08/17 21:11] – jt | dns_add_script [2020/08/10 02:35] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 2: | Line 2: | ||
# | # | ||
##Jason Thomas | ##Jason Thomas | ||
+ | ##Last Modified 20090819 | ||
+ | |||
use strict; | use strict; | ||
use lib '/ | use lib '/ | ||
Line 7: | Line 9: | ||
use IO::File; | use IO::File; | ||
use Text:: | use Text:: | ||
+ | use File::Grep qw( fgrep ); | ||
+ | |||
- | my $repository = "/ | + | ##my $repository = "/ |
+ | my $repository = "/ | ||
my $dnsData = " | my $dnsData = " | ||
+ | ##currently designed to read from file. however if fqdn is not before fqhn, it will not be able write | ||
+ | ##the entry until db.fqdn is created | ||
Line 17: | Line 24: | ||
foreach my $entry (@dnsLine){ | foreach my $entry (@dnsLine){ | ||
+ | |||
chomp ($entry); | chomp ($entry); | ||
+ | |||
my ($hostName, $ipAddress) = split(' | my ($hostName, $ipAddress) = split(' | ||
my ($domainName, | my ($domainName, | ||
- | my $dbZoneFile = checkZoneExist($domainName, $subDomain, $ipAddress); | + | checkZoneExist($domainName, |
- | addToZone($dbZoneFile, $subDomain, $ipAddress); | + | |
} | } | ||
Line 44: | Line 51: | ||
return ($hostName, undef); | return ($hostName, undef); | ||
} | } | ||
- | + | ||
else{ | else{ | ||
Line 52: | Line 59: | ||
if ( ! defined($subDomain) ){ | if ( ! defined($subDomain) ){ | ||
+ | |||
$subDomain=$tmp[$counter]; | $subDomain=$tmp[$counter]; | ||
} | } | ||
+ | |||
else{ | else{ | ||
+ | |||
$subDomain=" | $subDomain=" | ||
} | } | ||
} | } | ||
+ | |||
return ($domainName, | return ($domainName, | ||
} | } | ||
Line 69: | Line 80: | ||
my $dbZoneFile = " | my $dbZoneFile = " | ||
my $userName = " | my $userName = " | ||
- | my $soa = "2009081701"; | + | my $soa = "2009081801 |
if ( -e $repository.$dbZoneFile ){ | if ( -e $repository.$dbZoneFile ){ | ||
- | ## print "File Exists!" | + | |
+ | ## write subdomain to file if file exists; | ||
+ | addToZone($dbZoneFile, | ||
+ | |||
} | } | ||
- | else{ | + | elsif ( (! defined($subDomain)) || $subDomain eq "" |
- | my ($tabs) = tabLength($domainName); | + | |
+ | my ($tabs) = tabLength($domainName." | ||
makeZone(" | makeZone(" | ||
+ | |||
} | } | ||
- | return $dbZoneFile; | ||
} | } | ||
- | |||
- | |||
sub makeZone{ | sub makeZone{ | ||
- | my ($templateSource, | + | my ($templateSource, |
my $template = Text:: | my $template = Text:: | ||
my $result = $template-> | my $result = $template-> | ||
+ | |||
+ | if (! defined $result) { | ||
+ | die " | ||
+ | } | ||
open(DBFILE, | open(DBFILE, | ||
Line 103: | Line 120: | ||
my ($dbZoneFile, | my ($dbZoneFile, | ||
- | + | ||
- | + | ||
- | + | ||
if ( defined($subDomain) && | if ( defined($subDomain) && | ||
- | my ($tabs) = tabLength($subDomain); | + | |
- | open(DBFILE, | + | if ( fgrep {/ |
- | print DBFILE " | + | |
- | close (DBFILE); | + | print " |
+ | } | ||
+ | |||
+ | else { | ||
+ | |||
+ | my ($tabs) = tabLength($subDomain); | ||
+ | open(DBFILE, | ||
+ | print DBFILE " | ||
+ | close (DBFILE); | ||
+ | |||
+ | } | ||
} | } | ||
} | } | ||
Line 118: | Line 143: | ||
my ($word) = @_; | my ($word) = @_; | ||
my $tabs = " | my $tabs = " | ||
- | if (length($tabs) == 0) { | + | if (length($tabs) == 0){ |
- | $tabs = " "; | + | $tabs = "\t"; |
- | + | ||
} | } | ||
- | | + | return $tabs; |
} | } | ||
+ | |||
+ | |||
+ | ########################################################################### | ||
+ | # Help, info and correctional information. | ||
+ | ########################################################################### | ||
+ | sub subUsage { | ||
+ | |||
+ | print " | ||
+ | print " | ||
+ | print " | ||
+ | print "list of zones governed by named-zones.conf. This file will be created and sent, if needed, by dnsPush.\n"; | ||
+ | print "Only use this to add a new zone and make sure you have the correct type (virtual, www or blank).\n\n"; | ||
+ | print " | ||
+ | print " | ||
+ | print " | ||
+ | exit(0); | ||
+ | } | ||
+ | |||
</ | </ |
dns_add_script.1250543481.txt.gz · Last modified: 2020/08/10 02:28 (external edit)