From: Lennart Poettering Date: Sat, 13 Oct 2018 13:12:16 +0000 (+0200) Subject: core: add debug logging if we cant watch /etc/localtime itself X-Git-Tag: v240~552^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0cb21d8c603f8d9412fff98508b198c276e03536;p=thirdparty%2Fsystemd.git core: add debug logging if we cant watch /etc/localtime itself --- diff --git a/src/core/manager.c b/src/core/manager.c index af84a0a769f..f7bb066501a 100644 --- a/src/core/manager.c +++ b/src/core/manager.c @@ -423,10 +423,14 @@ static int manager_setup_timezone_change(Manager *m) { r = sd_event_add_inotify(m->event, &new_event, "/etc/localtime", IN_ATTRIB|IN_MOVE_SELF|IN_CLOSE_WRITE|IN_DONT_FOLLOW, manager_dispatch_timezone_change, m); - if (r == -ENOENT) /* If the file doesn't exist yet, subscribe to /etc instead, and wait until it is created - * either by O_CREATE or by rename() */ + if (r == -ENOENT) { + /* If the file doesn't exist yet, subscribe to /etc instead, and wait until it is created either by + * O_CREATE or by rename() */ + + log_debug_errno(r, "/etc/localtime doesn't exist yet, watching /etc instead."); r = sd_event_add_inotify(m->event, &new_event, "/etc", IN_CREATE|IN_MOVED_TO|IN_ONLYDIR, manager_dispatch_timezone_change, m); + } if (r < 0) return log_error_errno(r, "Failed to create timezone change event source: %m");