]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
core/automount: load() should fail when the unit file does not exist
authorYu Watanabe <watanabe.yu+github@gmail.com>
Sun, 19 Nov 2017 07:45:35 +0000 (16:45 +0900)
committerYu Watanabe <watanabe.yu+github@gmail.com>
Mon, 20 Nov 2017 00:35:30 +0000 (09:35 +0900)
It is not necessary to label as loaded to automount unit when its unit
file does not exist. So, let's make automount_load() to fail when the
unit file does not exist.

Partially fixes #7370.

src/core/automount.c

index e01b3ed9d34b03d08fb24cb866e635e3f91901a3..cbcc8abb2b174fc64517f57c1aefe7471de30beb 100644 (file)
@@ -224,7 +224,7 @@ static int automount_load(Unit *u) {
         assert(u->load_state == UNIT_STUB);
 
         /* Load a .automount file */
-        r = unit_load_fragment_and_dropin_optional(u);
+        r = unit_load_fragment_and_dropin(u);
         if (r < 0)
                 return r;