From: Yu Watanabe Date: Tue, 10 Sep 2024 19:05:31 +0000 (+0900) Subject: timesync: add support of basic command line options X-Git-Tag: v257-rc1~488^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4a851db694a63b08265e62483c92ce25427f0414;p=thirdparty%2Fsystemd.git timesync: add support of basic command line options --- diff --git a/src/timesync/timesyncd.c b/src/timesync/timesyncd.c index a1b63038c45..69c6b8e72ac 100644 --- a/src/timesync/timesyncd.c +++ b/src/timesync/timesyncd.c @@ -7,6 +7,7 @@ #include "sd-event.h" #include "sd-messages.h" +#include "bus-log-control-api.h" #include "capability-util.h" #include "clock-util.h" #include "daemon-util.h" @@ -16,6 +17,7 @@ #include "mkdir-label.h" #include "network-util.h" #include "process-util.h" +#include "service-util.h" #include "signal-util.h" #include "timesyncd-bus.h" #include "timesyncd-conf.h" @@ -144,6 +146,13 @@ static int run(int argc, char *argv[]) { log_set_facility(LOG_CRON); log_setup(); + r = service_parse_argv("systemd-timesyncd.service", + "Network time synchronization", + BUS_IMPLEMENTATIONS(&manager_object, &log_control_object), + argc, argv); + if (r <= 0) + return r; + umask(0022); if (argc != 1)