chiark / gitweb /
core/smack: downgrade info to debug
[elogind.git] / src / core / mount.c
index e3d298eb961a448ce13189d87615af99f861d5e6..419cf27a889ea884b062b912e121ff4f5d53793e 100644 (file)
@@ -329,6 +329,12 @@ static bool mount_is_bind(MountParameters *p) {
         if (p->fstype && streq(p->fstype, "bind"))
                 return true;
 
+        if (mount_test_option(p->options, "rbind"))
+                return true;
+
+        if (p->fstype && streq(p->fstype, "rbind"))
+                return true;
+
         return false;
 }