diff options
Diffstat (limited to 'tools/make-dhcpd-include.pl')
-rwxr-xr-x | tools/make-dhcpd-include.pl | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/tools/make-dhcpd-include.pl b/tools/make-dhcpd-include.pl deleted file mode 100755 index ded5551..0000000 --- a/tools/make-dhcpd-include.pl +++ /dev/null @@ -1,18 +0,0 @@ -#!/usr/bin/perl -I /root/tgmanage -use strict; -my $base = "/etc"; -$base = $ARGV[0] if $#ARGV > -1; -$base .= "/" if not $base =~ m/\/$/ and not $base eq ""; - -my $dhcpd_base = $base . "dhcp/"; -my $includeconfig = $dhcpd_base . "generated-include.conf"; - -my $glob = $dhcpd_base . "conf.d/*.conf"; -my @configs = glob($glob); - -open CONF, ">" . $includeconfig or die ( $! . " " . $includeconfig); -foreach my $config ( @configs ) -{ - print CONF "include \"" . $config . "\";\n"; -} -close CONF; |