summaryrefslogtreecommitdiffstats
path: root/installclass.py
diff options
context:
space:
mode:
authorDavid Cantrell <dcantrell@redhat.com>2006-03-24 21:01:36 +0000
committerDavid Cantrell <dcantrell@redhat.com>2006-03-24 21:01:36 +0000
commit752f4a828a20c5bee9c77b21ac334796d8ec1d5b (patch)
tree8d776d3fb983ed80bf2630e2f5b3c02e06832e7b /installclass.py
parenta08b8d82c731893a3c0010fec81324526cfaf8ad (diff)
downloadanaconda-752f4a828a20c5bee9c77b21ac334796d8ec1d5b.tar.gz
anaconda-752f4a828a20c5bee9c77b21ac334796d8ec1d5b.tar.xz
anaconda-752f4a828a20c5bee9c77b21ac334796d8ec1d5b.zip
Get ready for a surprise...
not really. It's just iutil.getArch() -> rhpl.getArch() updates.
Diffstat (limited to 'installclass.py')
-rw-r--r--installclass.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/installclass.py b/installclass.py
index 1399470d8..bdd7a7d83 100644
--- a/installclass.py
+++ b/installclass.py
@@ -17,6 +17,7 @@
import os, sys, iutil
import string
import language
+import rhpl
from instdata import InstallData
from partitioning import *
@@ -162,10 +163,10 @@ class BaseInstallClass:
if not BETANAG:
dispatch.skipStep("betanag", permanent=1)
- if iutil.getArch() != "s390":
+ if rhpl.getArch() != "s390":
dispatch.skipStep("zfcpconfig", permanent=1)
- if iutil.getArch() != "i386" and iutil.getArch() != "x86_64":
+ if rhpl.getArch() != "i386" and rhpl.getArch() != "x86_64":
dispatch.skipStep("bootloader", permanent=1)
# allow install classes to turn off the upgrade
@@ -520,7 +521,7 @@ def availableClasses(showHidden=0):
sortOrder = 0
if obj.__dict__.has_key('arch'):
- if obj.arch != iutil.getArch ():
+ if obj.arch != rhpl.getArch ():
obj.hidden = 1
if obj.hidden == 0 or showHidden == 1: