summaryrefslogtreecommitdiffstats
path: root/installclass.py
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2006-05-04 15:27:30 +0000
committerChris Lumens <clumens@redhat.com>2006-05-04 15:27:30 +0000
commitb15bb5d63e411f94476c7f064fec70e7c4209803 (patch)
tree39e58df2a3b9fe742b1843e9830254fa4f2a57f2 /installclass.py
parent4599e0880fa17eedb9f733ec3531395bb2910990 (diff)
downloadanaconda-b15bb5d63e411f94476c7f064fec70e7c4209803.tar.gz
anaconda-b15bb5d63e411f94476c7f064fec70e7c4209803.tar.xz
anaconda-b15bb5d63e411f94476c7f064fec70e7c4209803.zip
Finish making non-UI steps pass around the anaconda object.
Diffstat (limited to 'installclass.py')
-rw-r--r--installclass.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/installclass.py b/installclass.py
index 3c6a6930f..8bf9ea6ae 100644
--- a/installclass.py
+++ b/installclass.py
@@ -59,7 +59,7 @@ class BaseInstallClass:
# we can use a different install data class
installDataClass = InstallData
- def postAction(self, rootPath, serial, intf = None):
+ def postAction(self, anaconda, serial):
pass
def setBootloader(self, id, location=None, forceLBA=0, password=None,
@@ -202,10 +202,10 @@ class BaseInstallClass:
dispatch.skipStep("handleX11pkgs", permanent = 1)
dispatch.skipStep("writexconfig", permanent = 1)
- def setPackageSelection(self, backend, intf=None):
+ def setPackageSelection(self, anaconda):
pass
- def setGroupSelection(self, backend, intf=None):
+ def setGroupSelection(self, anaconda):
pass
def setZFCP(self, id, devnum, scsiid, wwpn, scsilun, fcplun):
@@ -448,9 +448,9 @@ class BaseInstallClass:
partitions.autoPartitionRequests = autoCreateLVMPartitionRequests(autorequests)
- def setInstallData(self, id, intf = None):
- id.reset()
- id.instClass = self
+ def setInstallData(self, anaconda):
+ anaconda.id.reset()
+ anaconda.id.instClass = self
# Classes should call these on __init__ to set up install data
#id.setKeyboard()