From 4a78b637808c5ba436dbbcaef54724be827298fd Mon Sep 17 00:00:00 2001 From: Yu Watanabe Date: Sun, 19 Nov 2017 16:45:35 +0900 Subject: [PATCH] core/automount: load() should fail when the unit file does not exist 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 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/automount.c b/src/core/automount.c index e01b3ed9d3..cbcc8abb2b 100644 --- a/src/core/automount.c +++ b/src/core/automount.c @@ -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;