From a651d70dfa5a31d8247030ccb11be78c633d0c97 Mon Sep 17 00:00:00 2001 From: "David J. Allen" Date: Tue, 7 Jan 2025 12:38:27 -0700 Subject: [PATCH] generator: fixed issue where dnsmasq plugin did not output correctly --- pkg/generator/dnsmasq.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/generator/dnsmasq.go b/pkg/generator/dnsmasq.go index 83bf1d6..4ce5b8f 100644 --- a/pkg/generator/dnsmasq.go +++ b/pkg/generator/dnsmasq.go @@ -66,6 +66,6 @@ func (g *DNSMasq) Generate(config *config.Config, params Params) (FileMap, error "plugin_name": g.GetName(), "plugin_version": g.GetVersion(), "plugin_description": g.GetDescription(), - "dhcp-hosts": output, + "output": output, }, params.Templates) }