chiark / gitweb /
mount: add automatic start ordering dependencies for mounts
[elogind.git] / src / automount.c
index 26fec45107b35ad0e95aa9f0714a86b3ed11d79f..00f3736b2fc148c9eb5bf0bb223eca8073177dd3 100644 (file)
@@ -146,6 +146,23 @@ static int automount_add_mount_links(Automount *a) {
         return 0;
 }
 
+static int automount_add_default_dependencies(Automount *a) {
+        int r;
+
+        assert(a);
+
+        if (a->meta.manager->running_as == MANAGER_SYSTEM) {
+
+                if ((r = unit_add_dependency_by_name(UNIT(a), UNIT_AFTER, SPECIAL_SYSINIT_TARGET, NULL, true)) < 0)
+                        return r;
+
+                if ((r = unit_add_two_dependencies_by_name(UNIT(a), UNIT_BEFORE, UNIT_CONFLICTS, SPECIAL_UMOUNT_TARGET, NULL, true)) < 0)
+                        return r;
+        }
+
+        return 0;
+}
+
 static int automount_verify(Automount *a) {
         bool b;
         char *e;
@@ -202,7 +219,7 @@ static int automount_load(Unit *u) {
                         return r;
 
                 if (a->meta.default_dependencies)
-                        if ((r = unit_add_two_dependencies_by_name(UNIT(a), UNIT_BEFORE, UNIT_CONFLICTS, SPECIAL_UMOUNT_TARGET, NULL, true)) < 0)
+                        if ((r = automount_add_default_dependencies(a)) < 0)
                                 return r;
         }