From: Ondrej Kozina Date: Fri, 14 Feb 2014 12:37:49 +0000 (+0100) Subject: - add 'norecovery' among xfs mount options X-Git-Tag: v0.2.2~21^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F46%2Fhead;p=thirdparty%2Fsnapper.git - add 'norecovery' among xfs mount options --- diff --git a/snapper/Lvm.cc b/snapper/Lvm.cc index 05288882..bf0cb50b 100644 --- a/snapper/Lvm.cc +++ b/snapper/Lvm.cc @@ -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"); + } }