This adds dhcp-boot support to dnsmasq-init: option name "virt0" option filename "pxelinux.0" option servername "mainframe0.dev" option serveraddress "9.3.2.1"
closes #3529 SVN-Revision: 11663
This commit is contained in:
parent
7d81c1b6cc
commit
ed3aeb2031
1 changed files with 22 additions and 0 deletions
|
@ -169,6 +169,27 @@ dhcp_mac_add() {
|
|||
dhcp_option_add "$cfg" "$name"
|
||||
}
|
||||
|
||||
dhcp_boot_add() {
|
||||
local cfg="$1"
|
||||
|
||||
config_get name "$cfg" name
|
||||
[ -n "$name" ] || return 0
|
||||
|
||||
config_get filename "$cfg" filename
|
||||
[ -n "$filename" ] || return 0
|
||||
|
||||
config_get servername "$cfg" servername
|
||||
[ -n "$servername" ] || return 0
|
||||
|
||||
config_get serveraddress "$cfg" serveraddress
|
||||
[ -n "$serveraddress" ] || return 0
|
||||
|
||||
append args "--dhcp-boot=net:$name,$filename,$servername,$serveraddress"
|
||||
|
||||
dhcp_option_add "$cfg" "$name"
|
||||
}
|
||||
|
||||
|
||||
dhcp_add() {
|
||||
local cfg="$1"
|
||||
config_get net "$cfg" interface
|
||||
|
@ -239,6 +260,7 @@ start() {
|
|||
args=""
|
||||
config_foreach dnsmasq dnsmasq
|
||||
config_foreach dhcp_host_add host
|
||||
config_foreach dhcp_boot_add boot
|
||||
config_foreach dhcp_mac_add mac
|
||||
config_foreach dhcp_vendorclass_add vendorclass
|
||||
config_foreach dhcp_userclass_add userclass
|
||||
|
|
Loading…
Reference in a new issue