]> git.ipfire.org Git - thirdparty/snapper.git/commitdiff
- add 'norecovery' among xfs mount options 46/head
authorOndrej Kozina <okozina@redhat.com>
Fri, 14 Feb 2014 12:37:49 +0000 (13:37 +0100)
committerOndrej Kozina <okozina@redhat.com>
Fri, 14 Feb 2014 12:37:49 +0000 (13:37 +0100)
snapper/Lvm.cc

index 05288882ffe4a0ee996991090071f2e6f3c41c7c..bf0cb50bd97086511be2bbfca48a92be49fd5853 100644 (file)
@@ -94,7 +94,10 @@ namespace snapper
 
        mount_options = filter_mount_options(mtab_data.options);
        if (mount_type == "xfs")
+       {
            mount_options.push_back("nouuid");
+           mount_options.push_back("norecovery");
+       }
     }