Also adjusted case for initialisms (e.g., DHCP, TFTP, NFS). Signed-off-by: Jonathon Anderson <janderson@ciq.co>
13 lines
403 B
Go
13 lines
403 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"`
|
|
}
|