aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorroot <root@einstein.tg15.gathering.org>2015-03-30 04:27:31 +0200
committerroot <root@einstein.tg15.gathering.org>2015-03-30 04:27:31 +0200
commit733ee9be2bdf4a006628133ada372e438805afe9 (patch)
tree64fde19f9ddc135b14a92930c067e9c2a5c1c352 /tools
parent3ec824b20fc65c2352d881b80c02e6c59565f39d (diff)
Not needed anymore.
Diffstat (limited to 'tools')
-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";
-}