From 4a521883531e19675a184ecf53083b1fe1b1a21c Mon Sep 17 00:00:00 2001 From: "David J. Allen" Date: Mon, 29 Jul 2024 19:20:13 -0600 Subject: [PATCH] Shorted coredhcp description message --- pkg/generator/plugins/coredhcp/coredhcp.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/generator/plugins/coredhcp/coredhcp.go b/pkg/generator/plugins/coredhcp/coredhcp.go index 8f0af9b..4e0729a 100644 --- a/pkg/generator/plugins/coredhcp/coredhcp.go +++ b/pkg/generator/plugins/coredhcp/coredhcp.go @@ -19,7 +19,7 @@ func (g *CoreDhcp) GetVersion() string { } func (g *CoreDhcp) GetDescription() string { - return fmt.Sprintf("Configurator generator plugin for '%s' to generate config files. This plugin is not complete and still a WIP.", g.GetName()) + return fmt.Sprintf("Configurator generator plugin for '%s' to generate config files. (WIP)", g.GetName()) } func (g *CoreDhcp) Generate(config *configurator.Config, opts ...util.Option) (generator.FileMap, error) {