From: juga0 Date: Tue, 5 Sep 2017 10:26:32 +0000 (+0000) Subject: networkd: send dhcp option NTP when UseNTP is true (#6726) X-Git-Tag: v235~160 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ead36ce651955999e7cf1f6167aa0065f8cd5f3f;p=thirdparty%2Fsystemd.git networkd: send dhcp option NTP when UseNTP is true (#6726) --- diff --git a/src/network/networkd-dhcp4.c b/src/network/networkd-dhcp4.c index 77771688e13..84a25b1a03e 100644 --- a/src/network/networkd-dhcp4.c +++ b/src/network/networkd-dhcp4.c @@ -635,10 +635,11 @@ int dhcp4_configure(Link *link) { return r; } - /* Always acquire the timezone and NTP */ - r = sd_dhcp_client_set_request_option(link->dhcp_client, SD_DHCP_OPTION_NTP_SERVER); - if (r < 0) - return r; + if (link->network->dhcp_use_ntp) { + r = sd_dhcp_client_set_request_option(link->dhcp_client, SD_DHCP_OPTION_NTP_SERVER); + if (r < 0) + return r; + } r = sd_dhcp_client_set_request_option(link->dhcp_client, SD_DHCP_OPTION_NEW_TZDB_TIMEZONE); if (r < 0)