From 06324b06330517221c61c069af12c49917805b6f Mon Sep 17 00:00:00 2001 From: David Lehman Date: Fri, 12 Jul 2013 09:52:11 -0500 Subject: [PATCH 05/13] Store current mount options in getActiveMounts. (#914898) --- blivet/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/blivet/__init__.py b/blivet/__init__.py index 90c6272..40cdd9e 100644 --- a/blivet/__init__.py +++ b/blivet/__init__.py @@ -1986,6 +1986,7 @@ class Blivet(object): if device is not None: device.format.mountpoint = mountpoint # for future mounts device.format._mountpoint = mountpoint # active mountpoint + device.format.mountopts = options def updateKSData(self): """ Update ksdata to reflect the settings of this Blivet instance. """ -- 1.8.1.4