aboutsummaryrefslogtreecommitdiffstats
path: root/tools/make-dhcpd-include.pl
diff options
context:
space:
mode:
Diffstat (limited to 'tools/make-dhcpd-include.pl')
-rwxr-xr-xtools/make-dhcpd-include.pl18
1 files changed, 18 insertions, 0 deletions
diff --git a/tools/make-dhcpd-include.pl b/tools/make-dhcpd-include.pl
new file mode 100755
index 0000000..ded5551
--- /dev/null
+++ b/tools/make-dhcpd-include.pl
@@ -0,0 +1,18 @@
+#!/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;