From e56f36380365b5825f0920b0f00a459edc0b2e84 Mon Sep 17 00:00:00 2001 From: Tom Gundersen Date: Mon, 19 May 2014 20:46:54 +0200 Subject: [PATCH] timesyncd: only attempt to connect when an address is configured For now, we accept both link-local and routable addresses, maybe we want to restrict ourselves to routable addresses only. --- TODO | 1 - src/timesync/timesyncd.c | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/TODO b/TODO index 079806536..9a50afbe8 100644 --- a/TODO +++ b/TODO @@ -40,7 +40,6 @@ Features: * timesyncd: - hookup with networkd: NTP servers from dhcp - - hookup with networkd: listen to online/offline state * a way for container managers to turn off getty starting via $container_headless= or so... diff --git a/src/timesync/timesyncd.c b/src/timesync/timesyncd.c index 6e63e34d8..6dcd942ec 100644 --- a/src/timesync/timesyncd.c +++ b/src/timesync/timesyncd.c @@ -1070,7 +1070,7 @@ static bool network_is_online(void) { int r; r = sd_network_get_operational_state(&state); - if (r >= 0 && streq("carrier", state)) + if (r >= 0 && (streq("routable", state) || streq("degraded", state))) return true; else return false; -- 2.30.2