[blivet][PATCH][f21-branch] Disable resize of ntfs during OS installation. (#1120964)

David Lehman dlehman at redhat.com
Wed Oct 22 20:55:37 UTC 2014


This is a temporary measure to prevent any users from hitting the
corruption encountered in the referenced bug. After beta we will
address the issue correctly, but for now the goal is a safe beta.
---
 blivet/formats/fs.py | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/blivet/formats/fs.py b/blivet/formats/fs.py
index 19b115a..5746be3 100644
--- a/blivet/formats/fs.py
+++ b/blivet/formats/fs.py
@@ -1391,6 +1391,10 @@ class NTFS(FS):
                 self.device]
         return argv
 
+    @property
+    def resizable(self):
+        return not flags.installer_mode and super(NTFS, self).resizable
+
 
 register_device_format(NTFS)
 
-- 
1.9.3



More information about the anaconda-patches mailing list