aboutsummaryrefslogtreecommitdiffstats
path: root/tools/dhcp6-nets.pl
diff options
context:
space:
mode:
authorroot <root@tgmanage.gathering.org>2015-03-30 12:45:06 +0200
committerroot <root@tgmanage.gathering.org>2015-03-30 12:45:06 +0200
commitbb2abf7f0958a1b56d993ec2b7185462902ea6a0 (patch)
treeedec9969fd64552a98af99e54c17c436dc994b74 /tools/dhcp6-nets.pl
parentd89553b58f2f644e62f17d07b2a3aadac165644b (diff)
parent61dfddebf652cae188e9ca3381cfbbb129728fa7 (diff)
Merge branch 'master' of github.com:tech-server/tgmanage
Diffstat (limited to 'tools/dhcp6-nets.pl')
-rwxr-xr-xtools/dhcp6-nets.pl12
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";
-}