summaryrefslogtreecommitdiffstats
path: root/isys/isys.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2005-12-22 16:29:02 +0000
committerJeremy Katz <katzj@redhat.com>2005-12-22 16:29:02 +0000
commit21561606ce162add085236f04b785da79c820c3d (patch)
tree3f5ed0fc4dc21b868a182fbd713a5c6bfe930c46 /isys/isys.py
parentf44cf9f3be7aa6f74af279710303fd0bdf068cf2 (diff)
downloadanaconda-21561606ce162add085236f04b785da79c820c3d.tar.gz
anaconda-21561606ce162add085236f04b785da79c820c3d.tar.xz
anaconda-21561606ce162add085236f04b785da79c820c3d.zip
2005-12-22 Jeremy Katz <katzj@redhat.com>
* isys/isys.py (hardDriveDict): Only look for STMF on iSeries (#176024)
Diffstat (limited to 'isys/isys.py')
-rw-r--r--isys/isys.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/isys/isys.py b/isys/isys.py
index fe9e4e273..463cd6ebe 100644
--- a/isys/isys.py
+++ b/isys/isys.py
@@ -296,7 +296,7 @@ def hardDriveDict():
# this is kind of ugly, but it's much easier to do this from python
for (dev, descr) in dict.items():
# blacklist *STMF on power5 iSeries boxes
- if iutil.getArch() == "ppc" and dev.startswith("sd"):
+ if iutil.getPPCMachine() == "iSeries" and dev.startswith("sd"):
try:
devName = "/tmp/%s" % dev
makeDevInode(dev, devName)