diff options
-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"; -} |