chiark / gitweb /
dbus: implement start/stop/restart/reload/cancel D-Bus calls
[elogind.git] / automount.c
index 7b397c9b9bfbd73b89d36806b9317aeb3b1300f9..624bd24349f58f2ea2019e8016850c479e30651e 100644 (file)
@@ -5,7 +5,6 @@
 #include "unit.h"
 #include "automount.h"
 #include "load-fragment.h"
-#include "load-fstab.h"
 #include "load-dropin.h"
 
 static int automount_init(Unit *u) {
@@ -17,11 +16,7 @@ static int automount_init(Unit *u) {
         exec_context_init(&a->exec_context);
 
         /* Load a .automount file */
-        if ((r = unit_load_fragment(u)) < 0 && errno != -ENOENT)
-                return r;
-
-        /* Load entry from /etc/fstab */
-        if ((r = unit_load_fstab(u)) < 0)
+        if ((r = unit_load_fragment(u)) < 0)
                 return r;
 
         /* Load drop-in directory data */