12 lines
402 B
Go
12 lines
402 B
Go
package config
|
|
|
|
// DHCPConf represents the configuration for the DHCP service that
|
|
// Warewulf will configure.
|
|
type DHCPConf struct {
|
|
Enabled bool `yaml:"enabled" default:"true"`
|
|
Template string `yaml:"template" default:"default"`
|
|
RangeStart string `yaml:"range start,omitempty"`
|
|
RangeEnd string `yaml:"range end,omitempty"`
|
|
SystemdName string `yaml:"systemd name" default:"dhcpd"`
|
|
}
|