diff options
author | Chris Lumens <clumens@redhat.com> | 2006-09-08 20:02:55 +0000 |
---|---|---|
committer | Chris Lumens <clumens@redhat.com> | 2006-09-08 20:02:55 +0000 |
commit | 38ee7737daadef9b8526f0bef2c29282947996f8 (patch) | |
tree | cedbbb10740194f0cfc6c013223871a6c757a83a /image.py | |
parent | 3814df2af7fe7314cc28293d2de1a2196e3851f1 (diff) | |
download | anaconda-38ee7737daadef9b8526f0bef2c29282947996f8.tar.gz anaconda-38ee7737daadef9b8526f0bef2c29282947996f8.tar.xz anaconda-38ee7737daadef9b8526f0bef2c29282947996f8.zip |
Look for repodata where the CDs are mounted, not where they are stored.
Diffstat (limited to 'image.py')
-rw-r--r-- | image.py | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -458,6 +458,9 @@ def findIsoImages(path, messageWindow): class NfsIsoInstallMethod(NfsInstallMethod): + def getMethodUri(self): + return "file:///tmp/isomedia/" + def getFilename(self, filename, callback=None, destdir=None, retry=1): return self.mntPoint + "/" + filename |