diff options
author | Jeremy Katz <katzj@redhat.com> | 2005-09-16 21:16:28 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2005-09-16 21:16:28 +0000 |
commit | 10f211fb9f37aff25d1dc592c9796cd9fe8e179e (patch) | |
tree | 0d879e3404cc0e1ba0e704d1260739ceb052dadc /anaconda | |
parent | b6013ec3704e05f111d7b3ac8f1851515898f6c5 (diff) | |
download | anaconda-10f211fb9f37aff25d1dc592c9796cd9fe8e179e.tar.gz anaconda-10f211fb9f37aff25d1dc592c9796cd9fe8e179e.tar.xz anaconda-10f211fb9f37aff25d1dc592c9796cd9fe8e179e.zip |
2005-09-16 Jeremy Katz <katzj@redhat.com>
* yuminstall.py (AnacondaYum.__init__): Little bit of clean-up,
remove some unused code.
(YumBackend.__init__): Create config file sooner.
(YumBackend.doPreSelection): Get base install class package
selection working in the short-term.
(YumBackend): Implement groupExists, selectGroup, selectPackage
and deselectPackage.
* kickstart.py (AnacondaKSParser.handleCommand): Fix traceback.
(Kickstart.setPackageSelection): Implement basic package selection.
(Kickstart.setGroupSelection): ... and group selection.
* installclass.py (BaseInstallClass.setPackageSelection): Use backend.
(BaseInstallClass.setGroupSelection): Likewise.
* dispatch.py (installSteps): Some comments to move stuff around,
re-instate post action step.
* backend.py (AnacondaBackend): Take instpath argument. Stub in
functions for basic package/group selection.
* anaconda: Pass rootPath into backend.
Diffstat (limited to 'anaconda')
-rwxr-xr-x | anaconda | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1052,7 +1052,7 @@ if method: from image import NfsInstallMethod methodobj = NfsInstallMethod(method[5:], rootPath, intf) from yuminstall import YumBackend - backend = YumBackend("file:////mnt/source", methodobj) + backend = YumBackend("file:///mnt/source", methodobj, rootPath) # elif method.startswith('nfsiso:/'): # from image import NfsIsoInstallMethod # methodobj = NfsIsoInstallMethod(method[8:], rootPath, intf) @@ -1060,7 +1060,7 @@ if method: from urlinstall import UrlInstallMethod methodobj = UrlInstallMethod(method, rootPath, intf) from yuminstall import YumBackend - backend = YumBackend(method, methodobj) + backend = YumBackend(method, methodobj, rootPath) # elif method.startswith('hd://'): # from harddrive import HardDriveInstallMethod # methodobj = HardDriveInstallMethod(method[5:], rootPath, intf) |