From 696cccec95ba2c731c8f6d80ba906161ad93c7b2 Mon Sep 17 00:00:00 2001 From: Grant Slater Date: Wed, 12 Oct 2022 10:46:59 +0100 Subject: [PATCH] dhcpd: Fix PCode format: stdoffset --- cookbooks/dhcpd/templates/default/dhcpd.conf.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cookbooks/dhcpd/templates/default/dhcpd.conf.erb b/cookbooks/dhcpd/templates/default/dhcpd.conf.erb index d95d55a7e..93c751e77 100644 --- a/cookbooks/dhcpd/templates/default/dhcpd.conf.erb +++ b/cookbooks/dhcpd/templates/default/dhcpd.conf.erb @@ -19,7 +19,7 @@ subnet <%= interface[:network] %> netmask <%= interface[:netmask] %> { option ntp-servers <%= node[:ntp][:servers].first %>; option time-offset 0; - option PCode "UTC"; + option PCode "UTC0"; option TCode "Etc/UTC"; next-server <%= interface[:gateway] %>; -- 2.39.5