]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
Merge pull request #16048 from poettering/conf-parser-mtime
authorYu Watanabe <watanabe.yu+github@gmail.com>
Tue, 2 Jun 2020 23:25:28 +0000 (08:25 +0900)
committerGitHub <noreply@github.com>
Tue, 2 Jun 2020 23:25:28 +0000 (08:25 +0900)
conf-parser: automatically pick up newest mtime when parsing configuration files

src/core/load-fragment.c
src/core/unit.c

index 780692ce0eb2d4cfd8daee3baae7948775ead26a..49fdcaff7e14f573db5d34ab0f296d9f7b404529 100644 (file)
@@ -4804,7 +4804,6 @@ static int merge_by_names(Unit **u, Set *names, const char *id) {
 int unit_load_fragment(Unit *u) {
         const char *fragment;
         _cleanup_set_free_free_ Set *names = NULL;
-        struct stat st;
         int r;
 
         assert(u);
@@ -4836,6 +4835,7 @@ int unit_load_fragment(Unit *u) {
         if (fragment) {
                 /* Open the file, check if this is a mask, otherwise read. */
                 _cleanup_fclose_ FILE *f = NULL;
+                struct stat st;
 
                 /* Try to open the file name. A symlink is OK, for example for linked files or masks. We
                  * expect that all symlinks within the lookup paths have been already resolved, but we don't
@@ -4874,13 +4874,6 @@ int unit_load_fragment(Unit *u) {
                 }
         }
 
-        if (u->source_path) {
-                if (stat(u->source_path, &st) >= 0)
-                        u->source_mtime = timespec_load(&st.st_mtim);
-                else
-                        u->source_mtime = 0;
-        }
-
         /* We do the merge dance here because for some unit types, the unit might have aliases which are not
          * declared in the file system. In particular, this is true (and frequent) for device and swap units.
          */
index e1eb6ac7866b676e6bada5db0928c85d66e7786e..507a439e97dcb66dd1b9eb11179ebf3585e2132d 100644 (file)
@@ -1457,7 +1457,20 @@ int unit_load_fragment_and_dropin(Unit *u, bool fragment_required) {
          * target unit needlessly. But we cannot be sure which drops-ins have already
          * been loaded and which not, at least without doing complicated book-keeping,
          * so let's always reread all drop-ins. */
-        return unit_load_dropin(unit_follow_merge(u));
+        r = unit_load_dropin(unit_follow_merge(u));
+        if (r < 0)
+                return r;
+
+        if (u->source_path) {
+                struct stat st;
+
+                if (stat(u->source_path, &st) >= 0)
+                        u->source_mtime = timespec_load(&st.st_mtim);
+                else
+                        u->source_mtime = 0;
+        }
+
+        return 0;
 }
 
 void unit_add_to_target_deps_queue(Unit *u) {