summaryrefslogtreecommitdiffstats
path: root/packages.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2007-11-29 11:34:47 -0500
committerJeremy Katz <katzj@redhat.com>2007-11-29 16:43:45 -0500
commit462628f2a9511e8974f93ed1c859bd48564cb291 (patch)
tree046852b546bfe6a8bcdd94b8dc1124658b6efdff /packages.py
parentb8ea610073747bc8d5ddcd41531e38b7a351532f (diff)
downloadanaconda-462628f2a9511e8974f93ed1c859bd48564cb291.tar.gz
anaconda-462628f2a9511e8974f93ed1c859bd48564cb291.tar.xz
anaconda-462628f2a9511e8974f93ed1c859bd48564cb291.zip
Backend code for logical volume resizing
Diffstat (limited to 'packages.py')
-rw-r--r--packages.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/packages.py b/packages.py
index 99f9a3842..42dc12bd6 100644
--- a/packages.py
+++ b/packages.py
@@ -148,10 +148,11 @@ def turnOnFilesystems(anaconda):
searchPath = 1)
anaconda.id.partitions.doMetaDeletes(anaconda.id.diskset)
anaconda.id.fsset.setActive(anaconda.id.diskset)
- anaconda.id.fsset.shrinkFilesystems(anaconda.rootPath)
+ anaconda.id.fsset.shrinkFilesystems(anaconda.id.diskset, anaconda.rootPath)
if not anaconda.id.fsset.isActive():
anaconda.id.diskset.savePartitions ()
- anaconda.id.fsset.growFilesystems(anaconda.rootPath)
+ anaconda.id.partitions.doMetaResizes(anaconda.id.diskset)
+ anaconda.id.fsset.growFilesystems(anaconda.id.diskset, anaconda.rootPath)
if not anaconda.id.fsset.volumesCreated:
anaconda.id.fsset.createLogicalVolumes(anaconda.rootPath)
anaconda.id.fsset.formatSwap(anaconda.rootPath)