b9a1e35
From 1b8bdd05fcecd83cc8c8269f06a50ced055ab864 Mon Sep 17 00:00:00 2001
b9a1e35
From: Franck Bui <fbui@suse.com>
b9a1e35
Date: Tue, 1 Dec 2015 18:01:44 +0100
b9a1e35
Subject: [PATCH] fstab-generator: fix automount option and don't start
b9a1e35
 associated mount unit at boot
b9a1e35
b9a1e35
Without this patch applied the mount unit with 'automount' option was still
b9a1e35
pulled by local-fs.target and thus was activated during the boot process which
b9a1e35
defeats the purpose of the 'automount' option:
b9a1e35
b9a1e35
   $ grep /mnt /etc/fstab
b9a1e35
   /dev/vdb1 /mnt ext2 defaults,x-systemd.automount 0 0
b9a1e35
b9a1e35
   $ reboot
b9a1e35
   ...
b9a1e35
b9a1e35
   $ mount | grep mnt
b9a1e35
   systemd-1 on /mnt type autofs (rw,relatime,fd=34,pgrp=1,timeout=0,minproto=5,maxproto=5,direct)
b9a1e35
   /dev/vdb1 on /mnt type ext2 (rw,relatime)
b9a1e35
b9a1e35
   $ systemctl status mnt.mount | grep Active
b9a1e35
      Active: active (mounted) since Thu 2016-03-03 21:36:22 CET; 42s ago
b9a1e35
b9a1e35
With the patch applied:
b9a1e35
b9a1e35
   $ reboot
b9a1e35
   ...
b9a1e35
b9a1e35
   $ mount | grep mnt
b9a1e35
   systemd-1 on /mnt type autofs (rw,relatime,fd=22,pgrp=1,timeout=0,minproto=5,maxproto=5,direct)
b9a1e35
b9a1e35
   $ systemctl status mnt.mount | grep Active
b9a1e35
      Active: inactive (dead)
b9a1e35
b9a1e35
   $ ls /mnt
b9a1e35
   lost+found
b9a1e35
b9a1e35
   $ systemctl status mnt.mount | grep Active
b9a1e35
      Active: active (mounted) since Thu 2016-03-03 21:47:32 CET; 4s ago
b9a1e35
b9a1e35
(cherry picked from commit 2b14df4a9ae92623b584e61db6b5b37accd832c1)
b9a1e35
---
b9a1e35
 src/core/mount.c                      | 11 ++++++++++-
b9a1e35
 src/fstab-generator/fstab-generator.c |  4 ++--
b9a1e35
 2 files changed, 12 insertions(+), 3 deletions(-)
b9a1e35
b9a1e35
diff --git a/src/core/mount.c b/src/core/mount.c
b9a1e35
index de1075d3a0..cfe4b0f517 100644
b9a1e35
--- a/src/core/mount.c
b9a1e35
+++ b/src/core/mount.c
b9a1e35
@@ -104,6 +104,14 @@ static bool mount_is_auto(const MountParameters *p) {
b9a1e35
         return !fstab_test_option(p->options, "noauto\0");
b9a1e35
 }
b9a1e35
 
b9a1e35
+static bool mount_is_automount(const MountParameters *p) {
b9a1e35
+        assert(p);
b9a1e35
+
b9a1e35
+        return fstab_test_option(p->options,
b9a1e35
+                                 "comment=systemd.automount\0"
b9a1e35
+                                 "x-systemd.automount\0");
b9a1e35
+}
b9a1e35
+
b9a1e35
 static bool needs_quota(const MountParameters *p) {
b9a1e35
         assert(p);
b9a1e35
 
b9a1e35
@@ -328,7 +336,8 @@ static int mount_add_device_links(Mount *m) {
b9a1e35
         if (path_equal(m->where, "/"))
b9a1e35
                 return 0;
b9a1e35
 
b9a1e35
-        if (mount_is_auto(p) && UNIT(m)->manager->running_as == MANAGER_SYSTEM)
b9a1e35
+        if (mount_is_auto(p) && !mount_is_automount(p) &&
b9a1e35
+            UNIT(m)->manager->running_as == MANAGER_SYSTEM)
b9a1e35
                 device_wants_mount = true;
b9a1e35
 
b9a1e35
         r = unit_add_node_link(UNIT(m), p->what, device_wants_mount, m->from_fragment ? UNIT_BINDS_TO : UNIT_REQUIRES);
b9a1e35
diff --git a/src/fstab-generator/fstab-generator.c b/src/fstab-generator/fstab-generator.c
b9a1e35
index 97a48764ae..6f576b5ecf 100644
b9a1e35
--- a/src/fstab-generator/fstab-generator.c
b9a1e35
+++ b/src/fstab-generator/fstab-generator.c
b9a1e35
@@ -336,8 +336,8 @@ static int add_mount(
b9a1e35
         if (r < 0)
b9a1e35
                 return log_error_errno(r, "Failed to write unit file %s: %m", unit);
b9a1e35
 
b9a1e35
-        if (!noauto) {
b9a1e35
-                lnk = strjoin(arg_dest, "/", post, nofail || automount ? ".wants/" : ".requires/", name, NULL);
b9a1e35
+        if (!noauto && !automount) {
b9a1e35
+                lnk = strjoin(arg_dest, "/", post, nofail ? ".wants/" : ".requires/", name, NULL);
b9a1e35
                 if (!lnk)
b9a1e35
                         return log_oom();
b9a1e35