diff options
author | root <root@einstein.tg15.gathering.org> | 2015-03-30 04:27:31 +0200 |
---|---|---|
committer | root <root@einstein.tg15.gathering.org> | 2015-03-30 04:27:31 +0200 |
commit | 733ee9be2bdf4a006628133ada372e438805afe9 (patch) | |
tree | 64fde19f9ddc135b14a92930c067e9c2a5c1c352 /tools | |
parent | 3ec824b20fc65c2352d881b80c02e6c59565f39d (diff) |
Not needed anymore.
Diffstat (limited to 'tools')
-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"; -} |