implemented a do not touch for dhcp config and a config action
[grml-terminalserver.git] / templates / dhcpd_config
1 #!/bin/sh i like colors :)
2 #
3 # the following variables are available in the template:
4 #
5 # $INTERFACE_     (interface for the terminalserver)
6 # $IP_            (ip for the terminalserver to bind)
7 # $NETMASK_       (network mask)
8 # $GW_            (gateway)
9 # $NAMESERVERS_   (nameservers for the nodes)
10 # $IPRANGE_FROM_  (user configured iprange, first ip)
11 # $IPRANGE_TO_    (user configured iprange, last ip)
12 # $NETWORK_       (first ip in this subnet)
13 # $OPTIONS_       (options for grml-terminalserver)
14 # $BOOT_ARGS_     (boot arguments for the nodes)
15 #
16 # NOTE:
17 # templates are shellscript fragments and will be sourced from the
18 # terminalserver
19 #
20 # GLOBAL_README_END
21
22 #
23 # this is the template to create the config file for the dhcpd server
24 #
25
26 date_=`execute date warn`
27
28 cat >"$DHCPD_CONFIG_FILE_" <<EOT
29 # ${DHCPD_CONFIG_FILE_##/*/} for GRML terminalserver
30 # created on $date_
31 # THIS IS A GENERATED CONFIG FROM GRML-TERMINALSERVER, DO NOT EDIT!!!
32 # better adapt $TEMPLATE_CONFIG_DIR_/dhcpd_config to your needs and update config
33 # with grml-terminalserver config dhcp
34 #
35 # If you really want to edit _this_ file remove the next line
36 # __PLEASE_UPDATE_THIS_FILE__
37
38 # global settings
39 allow booting;
40 allow bootp;
41 #option option-150 code 150 = text ;
42 #option T150 code 150 = string;
43 default-lease-time 600;
44 max-lease-time 7200;
45
46 subnet $NETWORK_ netmask $NETMASK_ {
47   next-server $IP_;
48   if substring (option vendor-class-identifier, 0, 9) = "Etherboot" { filename "etherboot.nbi"; }
49   else { filename "pxelinux.0"; }
50 #  option subnet-mask $NETMASK_;
51   range $IPRANGE_FROM_ $IPRANGE_TO_;
52 #  option T150 "/menu.lst";
53 #  option option-150 "(nd)/menu.lst";
54 }
55
56 EOT
57