diff options
author | Jeremy Katz <katzj@redhat.com> | 2004-10-04 18:04:22 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2004-10-04 18:04:22 +0000 |
commit | 20bddecdf69db50092db612575d7415b07b36a92 (patch) | |
tree | 67c8473fcab1a4063a14ae425ead195e579fa717 | |
parent | 87d21b8f4e0c03fca19f7f848554ac715a3b7ac8 (diff) | |
download | anaconda-20bddecdf69db50092db612575d7415b07b36a92.tar.gz anaconda-20bddecdf69db50092db612575d7415b07b36a92.tar.xz anaconda-20bddecdf69db50092db612575d7415b07b36a92.zip |
2004-10-04 Jeremy Katz <katzj@redhat.com>
* partRequests.py (LogicalVolumeRequestSpec.getDevice): Fix
changing of VG name carrying through to boot loader setup (#132213)
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | partRequests.py | 5 |
2 files changed, 3 insertions, 5 deletions
@@ -1,5 +1,8 @@ 2004-10-04 Jeremy Katz <katzj@redhat.com> + * partRequests.py (LogicalVolumeRequestSpec.getDevice): Fix + changing of VG name carrying through to boot loader setup (#132213) + * partitions.py (Partitions.writeKS): Include PPC PReP boot partition (#133934) diff --git a/partRequests.py b/partRequests.py index 838c3c6db..54b5a574c 100644 --- a/partRequests.py +++ b/partRequests.py @@ -828,11 +828,6 @@ class LogicalVolumeRequestSpec(RequestSpec): def getDevice(self, partitions): """Return a device which can be solidified.""" - if self.dev: - # FIXME: this warning can probably be removed post-beta - log("WARNING: getting self.dev more than once for %s" %(self,)) - return self.dev - vg = partitions.getRequestByID(self.volumeGroup) vgname = vg.volumeGroupName self.dev = fsset.LogicalVolumeDevice(vgname, self.size, |