Use in templates means these were an accidental interface change. Signed-off-by: Jonathon Anderson <janderson@ciq.co>
21 lines
765 B
Go
21 lines
765 B
Go
package config
|
|
|
|
var ConfigFile = "@SYSCONFDIR@/warewulf/warewulf.conf"
|
|
|
|
type BuildConfig struct {
|
|
Bindir string `default:"@BINDIR@"`
|
|
Sysconfdir string `default:"@SYSCONFDIR@"`
|
|
Datadir string `default:"@DATADIR@"`
|
|
Localstatedir string `default:"@LOCALSTATEDIR@"`
|
|
Srvdir string `default:"@SRVDIR@"`
|
|
Tftpdir string `default:"@TFTPDIR@"`
|
|
Firewallddir string `default:"@FIREWALLDDIR@"`
|
|
Systemddir string `default:"@SYSTEMDDIR@"`
|
|
WWOverlaydir string `default:"@WWOVERLAYDIR@"`
|
|
WWChrootdir string `default:"@WWCHROOTDIR@"`
|
|
WWProvisiondir string `default:"@WWPROVISIONDIR@"`
|
|
Version string `default:"@VERSION@"`
|
|
Release string `default:"@RELEASE@"`
|
|
WWClientdir string `default:"@WWCLIENTDIR@"`
|
|
}
|