Use in templates means these were an accidental interface change. Signed-off-by: Jonathon Anderson <janderson@ciq.co>
14 lines
559 B
Go
14 lines
559 B
Go
package config
|
|
|
|
|
|
// TFTPConf represents that configuration for the TFTP service that
|
|
// Warewulf will configure.
|
|
type TFTPConf struct {
|
|
Enabled bool `yaml:"enabled" default:"true"`
|
|
TftpRoot string `yaml:"tftproot" default:"/var/lib/tftpboot"`
|
|
SystemdName string `yaml:"systemd name" default:"tftp"`
|
|
|
|
// Path is relative to buildconfig.DATADIR()
|
|
IpxeBinaries map[string]string `yaml:"ipxe" default:"{\"00:09\": \"x86_64.efi\",\"00:00\": \"x86_64.kpxe\",\"00:0B\": \"arm64.efi\",\"00:07\": \"x86_64.efi\"}"`
|
|
}
|