diff --git a/NEWS b/NEWS index 82955f9095..3c7c086197 100644 --- a/NEWS +++ b/NEWS @@ -124,7 +124,7 @@ CHANGES WITH 186: additional capabilities to the container. * timedated will now read known NTP implementation unit names - from /usr/share/systemd/ntp-units, + from /usr/share/systemd/ntp-units.d/*.list, systemd-timedated-ntp.target has been removed. * journalctl gained a new switch "-b" that lists log data of diff --git a/src/timedate/timedated.c b/src/timedate/timedated.c index 5387699bf3..237eb24894 100644 --- a/src/timedate/timedated.c +++ b/src/timedate/timedated.c @@ -354,7 +354,7 @@ static char** get_ntp_services(void) { strv_free(files); - return r; + return strv_uniq(r); } static int read_ntp(DBusConnection *bus) {