diff options
author | root <root@tgmanage.gathering.org> | 2015-03-30 12:45:06 +0200 |
---|---|---|
committer | root <root@tgmanage.gathering.org> | 2015-03-30 12:45:06 +0200 |
commit | bb2abf7f0958a1b56d993ec2b7185462902ea6a0 (patch) | |
tree | edec9969fd64552a98af99e54c17c436dc994b74 /tools/dhcp6-nets.pl | |
parent | d89553b58f2f644e62f17d07b2a3aadac165644b (diff) | |
parent | 61dfddebf652cae188e9ca3381cfbbb129728fa7 (diff) |
Merge branch 'master' of github.com:tech-server/tgmanage
Diffstat (limited to 'tools/dhcp6-nets.pl')
-rwxr-xr-x | tools/dhcp6-nets.pl | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/tools/dhcp6-nets.pl b/tools/dhcp6-nets.pl deleted file mode 100755 index 3866ac5..0000000 --- a/tools/dhcp6-nets.pl +++ /dev/null @@ -1,12 +0,0 @@ -#!/usr/bin/perl -use strict; -use warnings; - -while(<STDIN>){ - my ($row, $v6) = split; - $v6 =~ s/::1/::/; - - print "subnet6 $v6 {\n"; - print "\toption domain-name \"$row.tg13.gathering.org\";\n"; - print "}\n\n"; -} |