summaryrefslogtreecommitdiffstats
path: root/partRequests.py
diff options
context:
space:
mode:
authorMike Fulbright <msf@redhat.com>2002-05-29 00:15:23 +0000
committerMike Fulbright <msf@redhat.com>2002-05-29 00:15:23 +0000
commit4977522f5aa71748a8b12a58cde71b3bd6194d5a (patch)
tree23ad3ec4d6d3ece3dd16bfd908c07da62277179f /partRequests.py
parentc68226e881e3584cd0735fa35a63957c2dba544d (diff)
downloadanaconda-4977522f5aa71748a8b12a58cde71b3bd6194d5a.tar.gz
anaconda-4977522f5aa71748a8b12a58cde71b3bd6194d5a.tar.xz
anaconda-4977522f5aa71748a8b12a58cde71b3bd6194d5a.zip
fix some lvm issues
Diffstat (limited to 'partRequests.py')
-rw-r--r--partRequests.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/partRequests.py b/partRequests.py
index 2c4ee9d9c..322a22cbd 100644
--- a/partRequests.py
+++ b/partRequests.py
@@ -335,7 +335,7 @@ class PartitionSpec(RequestSpec):
str = ("%(n)s Part Request -- mountpoint: %(mount)s uniqueID: %(id)s\n"
" type: %(fstype)s format: %(format)s badblocks: %(bb)s\n"
- " device: %(dev)s drive: %(drive) primary: %(primary)s\n"
+ " device: %(dev)s drive: %(drive)s primary: %(primary)s\n"
" size: %(size)s grow: %(grow)s maxsize: %(max)s\n"
" start: %(start)s end: %(end)s"
" migrate: %(migrate)s origfstype: %(origfs)s" %
@@ -542,7 +542,7 @@ class VolumeGroupRequestSpec(RequestSpec):
if not fstype:
fsset.fileSystemTypeGet("volume group (LVM)")
RequestSpec.__init__(self, fstype = fstype, format = format)
- self.type = REQUEST_LV
+ self.type = REQUEST_VG
self.volumeGroupName = vgname
self.physicalVolumes = physvols
@@ -584,7 +584,7 @@ class LogicalVolumeRequestSpec(RequestSpec):
RequestSpec.__init__(self, fstype = fstype, format = format,
mountpoint = mountpoint, size = size)
- self.type = REQUEST_VG
+ self.type = REQUEST_LV
self.logicalVolumeName = lvname
self.volumeGroup = volgroup