Remove warewulf.conf:syslog

- Fixes: #1606

Signed-off-by: Jonathon Anderson <janderson@ciq.com>
This commit is contained in:
Jonathon Anderson
2025-02-05 21:58:39 -07:00
parent 36dca0dfa3
commit 89721c6832
22 changed files with 7 additions and 59 deletions

View File

@@ -45,7 +45,6 @@ type WarewulfConf struct {
UpdateInterval int `yaml:"update interval,omitempty" default:"60"`
AutobuildOverlaysP *bool `yaml:"autobuild overlays,omitempty" default:"true"`
EnableHostOverlayP *bool `yaml:"host overlay,omitempty" default:"true"`
SyslogP *bool `yaml:"syslog,omitempty" default:"false"`
GrubBootP *bool `yaml:"grubboot,omitempty" default:"false"`
}
@@ -61,10 +60,6 @@ func (this WarewulfConf) EnableHostOverlay() bool {
return BoolP(this.EnableHostOverlayP)
}
func (this WarewulfConf) Syslog() bool {
return BoolP(this.SyslogP)
}
func (this WarewulfConf) GrubBoot() bool {
return BoolP(this.GrubBootP)
}