From 15b9243c0d7f6d1531fa65dbc01bd11e8e6c12ca Mon Sep 17 00:00:00 2001 From: Jan Macku Date: Thu, 2 Sep 2021 16:50:50 +0200 Subject: [PATCH] core: Indicate the time when the manager started loading units the last time --- src/core/manager.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/core/manager.c b/src/core/manager.c index 2b2406b0185..81d53870562 100644 --- a/src/core/manager.c +++ b/src/core/manager.c @@ -1729,6 +1729,11 @@ static void manager_ready(Manager *m) { /* Let's finally catch up with any changes that took place while we were reloading/reexecing */ manager_catchup(m); + /* Create a file which will indicate when the manager started loading units the last time. */ + (void) touch_file("/run/systemd/systemd-units-load", false, + m->timestamps[MANAGER_TIMESTAMP_UNITS_LOAD].realtime ?: now(CLOCK_REALTIME), + UID_INVALID, GID_INVALID, 0444); + m->honor_device_enumeration = true; } -- 2.47.3