diff options
author | David Cantrell <dcantrell@redhat.com> | 2008-08-13 11:19:00 -1000 |
---|---|---|
committer | David Cantrell <dcantrell@redhat.com> | 2008-08-13 11:19:00 -1000 |
commit | 00e1bbedde5dc08abc31cfafb8834d670599d1e3 (patch) | |
tree | 71121a2e62add0dcb834ed81adda825be3a333de /image.py | |
parent | 09315bb6d6e5db4d5d21d116d910dda8943be63d (diff) | |
download | anaconda-00e1bbedde5dc08abc31cfafb8834d670599d1e3.tar.gz anaconda-00e1bbedde5dc08abc31cfafb8834d670599d1e3.tar.xz anaconda-00e1bbedde5dc08abc31cfafb8834d670599d1e3.zip |
Rest of stage2.img changes.
Reference install.img in anaconda rather than stage2.img.
Diffstat (limited to 'image.py')
-rw-r--r-- | image.py | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -65,10 +65,10 @@ def findIsoImages(path, messageWindow): if num not in discNum or discArch != arch: continue - # if it's disc1, it needs to have images/stage2.img + # if it's disc1, it needs to have images/install.img if (num == 1 and not - os.access("/mnt/cdimage/images/stage2.img", os.R_OK)): - log.warning("%s doesn't have a stage2.img, skipping" %(what,)) + os.access("/mnt/cdimage/images/install.img", os.R_OK)): + log.warning("%s doesn't have a install.img, skipping" %(what,)) continue # we only install binary packages, so let's look for a # product/ dir and hope that this avoids getting |