From b3d38885188b78df81766acd1c7b9bfe4c30b802 Mon Sep 17 00:00:00 2001 From: Markus Hauschild Date: Mon, 27 Aug 2018 23:31:29 +0200 Subject: [PATCH] dchpd: don't use global ntp servers --- roles/dhcpd/templates/dhcp/dhcpd.conf.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/dhcpd/templates/dhcp/dhcpd.conf.j2 b/roles/dhcpd/templates/dhcp/dhcpd.conf.j2 index 0f84259..575e5c4 100644 --- a/roles/dhcpd/templates/dhcp/dhcpd.conf.j2 +++ b/roles/dhcpd/templates/dhcp/dhcpd.conf.j2 @@ -3,7 +3,7 @@ # option definitions common to all supported networks... option domain-name "binary.kitchen"; option domain-name-servers {{ name_servers | join(', ') }}; -option ntp-servers {{ ntp_servers | join(', ') }}; +option ntp-servers 172.23.1.61, 172.23.2.3; default-lease-time 7200; max-lease-time 28800;