summaryrefslogtreecommitdiffstats
path: root/kickstart.py
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2009-12-17 23:48:31 -0500
committerChris Lumens <clumens@redhat.com>2010-02-04 14:07:29 -0500
commitff60efad5c439e68c093037ae75619f876255ffe (patch)
tree47be692a557d97858404f698b6f8af9e1f0ad024 /kickstart.py
parent7b2652c066dd27662c131a2c8abf466700024f26 (diff)
downloadanaconda-ff60efad5c439e68c093037ae75619f876255ffe.tar.gz
anaconda-ff60efad5c439e68c093037ae75619f876255ffe.tar.xz
anaconda-ff60efad5c439e68c093037ae75619f876255ffe.zip
Move instClass to be an attribute on Anaconda.
Diffstat (limited to 'kickstart.py')
-rw-r--r--kickstart.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/kickstart.py b/kickstart.py
index f806bd05a..f16773e1c 100644
--- a/kickstart.py
+++ b/kickstart.py
@@ -187,7 +187,7 @@ class AutoPart(commands.autopart.F12_AutoPart):
def execute(self, anaconda):
# sets up default autopartitioning. use clearpart separately
# if you want it
- anaconda.id.instClass.setDefaultPartitioning(anaconda.id.storage, anaconda.platform)
+ anaconda.instClass.setDefaultPartitioning(anaconda.id.storage, anaconda.platform)
anaconda.id.storage.doAutoPart = True
if self.encrypted:
@@ -1283,7 +1283,7 @@ def selectPackages(anaconda):
# selections. This can also be explicitly specified with %packages
# --default. Otherwise, select whatever was given (even if it's nothing).
if not ksdata.packages.seen or ksdata.packages.default:
- anaconda.id.instClass.setGroupSelection(anaconda)
+ anaconda.instClass.setGroupSelection(anaconda)
return
for pkg in ksdata.packages.packageList:
@@ -1372,7 +1372,7 @@ def setSteps(anaconda):
dispatch.skipStep("betanag")
dispatch.skipStep("installtype")
else:
- anaconda.id.instClass.setSteps(anaconda)
+ anaconda.instClass.setSteps(anaconda)
dispatch.skipStep("findrootparts")
if interactive or flags.autostep: