summaryrefslogtreecommitdiffstats
path: root/storage/devices.py
diff options
context:
space:
mode:
authorHans de Goede <hdegoede@redhat.com>2009-03-18 16:52:08 +0100
committerHans de Goede <hdegoede@redhat.com>2009-03-18 19:36:39 +0100
commite892c1599e9f8b2694a473bd709b0717aa5cb8b8 (patch)
tree878f3fe1c430b478a97dd39505aed863bb1f0539 /storage/devices.py
parent23c2a553506ffc8a11051c63730926c6c7cc3f41 (diff)
downloadanaconda-e892c1599e9f8b2694a473bd709b0717aa5cb8b8.tar.gz
anaconda-e892c1599e9f8b2694a473bd709b0717aa5cb8b8.tar.xz
anaconda-e892c1599e9f8b2694a473bd709b0717aa5cb8b8.zip
Add a FIXME comment for setting uuid in VG / LV create
Add a FIXME comment for setting uuid in VG / LV create, so that we do not forget this needs fixing somewhere in the future.
Diffstat (limited to 'storage/devices.py')
-rw-r--r--storage/devices.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/storage/devices.py b/storage/devices.py
index 0922778c3..dbfc9fae3 100644
--- a/storage/devices.py
+++ b/storage/devices.py
@@ -1621,6 +1621,7 @@ class LVMVolumeGroupDevice(DMDevice):
self.createParents()
self.setupParents()
lvm.vgcreate(self.name, pv_list, self.peSize)
+ # FIXME set / update self.uuid here
self.exists = True
self.setup()
@@ -1906,6 +1907,7 @@ class LVMLogicalVolumeDevice(DMDevice):
# should we use --zero for safety's sake?
lvm.lvcreate(self.vg.name, self._name, self.size)
+ # FIXME set / update self.uuid here
self.exists = True
self.setup()