Iterate over /var/lib/dhcp* directories for touch command.
[grml-terminalserver.git] / templates / dhcpd_config
index 40b784a..824b42e 100644 (file)
@@ -1,5 +1,3 @@
-#!/bin/sh i like colors :)
-#
 # the following variables are available in the template:
 #
 # $INTERFACE_     (interface for the terminalserver)
 
 date_=`execute date warn`
 
+# insert commas when having multiple nameservers
+if [ -n "$NAMESERVERS_" ]; then
+       DNS_LINE_="option domain-name-servers $(echo "$NAMESERVERS_" | sed -e 's/\([0-9]\) \([0-9]\)/\1, \2/g');"
+fi
+# note: we don't support multiple routers options
+if [ -n "$GW_" ]; then
+       ROUTERS_LINE_="option routers $GW_;"
+fi
+
 cat >"$DHCPD_CONFIG_FILE_" <<EOT
 # ${DHCPD_CONFIG_FILE_##/*/} for GRML terminalserver
 # created on $date_
@@ -49,6 +56,8 @@ subnet $NETWORK_ netmask $NETMASK_ {
   else { filename "pxelinux.0"; }
 #  option subnet-mask $NETMASK_;
   range $IPRANGE_FROM_ $IPRANGE_TO_;
+  $ROUTERS_LINE_
+  $DNS_LINE_
 #  option T150 "/menu.lst";
 #  option option-150 "(nd)/menu.lst";
 }