diff --git a/internal/pkg/configure/dhcp.go b/internal/pkg/configure/dhcp.go index dfeb0f1e..175f10af 100644 --- a/internal/pkg/configure/dhcp.go +++ b/internal/pkg/configure/dhcp.go @@ -19,7 +19,7 @@ func DHCP() (err error) { controller := warewulfconf.Get() if !controller.DHCP.Enabled { - wwlog.Warn("This system is not configured as a Warewulf DHCP controller, need to manually run `wwctl configure dhcp` later") + wwlog.Warn("This system is not configured as a Warewulf DHCP controller") return } diff --git a/internal/pkg/configure/tftp.go b/internal/pkg/configure/tftp.go index 08bea5f7..4baadf15 100644 --- a/internal/pkg/configure/tftp.go +++ b/internal/pkg/configure/tftp.go @@ -42,7 +42,7 @@ func TFTP() (err error) { } } if !controller.TFTP.Enabled { - wwlog.Warn("Warewulf does not auto start TFTP services due to disable by warewulf.conf, need to manually run `wwctl configure tftp` later") + wwlog.Warn("Warewulf does not auto start TFTP services due to disable by warewulf.conf") return nil }