1
0
mirror of https://github.com/systemd/systemd.git synced 2024-11-06 08:26:52 +03:00

timesyncd: add a more servers by default

This commit is contained in:
Lennart Poettering 2014-05-06 01:37:29 +02:00
parent becad8f1ed
commit 881c74201d

View File

@ -40,6 +40,7 @@
#include "socket-util.h"
#include "list.h"
#include "ratelimit.h"
#include "strv.h"
#include "sd-event.h"
#include "sd-resolve.h"
#include "sd-daemon.h"
@ -1019,6 +1020,7 @@ static void manager_free(Manager *m) {
int main(int argc, char *argv[]) {
_cleanup_manager_free_ Manager *m = NULL;
const char *x;
int r;
log_set_target(LOG_TARGET_AUTO);
@ -1035,11 +1037,14 @@ int main(int argc, char *argv[]) {
sd_notify(false, "READY=1");
r = manager_add_server(m, "time1.google.com");
FOREACH_STRING(x, "time1.google.com", "time2.google.com", "time3.google.com", "time4.google.com", "0.fedora.pool.ntp.org") {
r = manager_add_server(m, x);
if (r < 0) {
log_error("Failed to add server: %s", strerror(-r));
log_error("Failed to add server %s: %s", x, strerror(-r));
goto out;
}
}
r = manager_connect(m);
if (r < 0)