summaryrefslogtreecommitdiffstats
path: root/harddrive.py
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2006-09-08 20:02:55 +0000
committerChris Lumens <clumens@redhat.com>2006-09-08 20:02:55 +0000
commit38ee7737daadef9b8526f0bef2c29282947996f8 (patch)
treecedbbb10740194f0cfc6c013223871a6c757a83a /harddrive.py
parent3814df2af7fe7314cc28293d2de1a2196e3851f1 (diff)
downloadanaconda-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 'harddrive.py')
-rw-r--r--harddrive.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/harddrive.py b/harddrive.py
index b2b3909eb..a52f0ebcf 100644
--- a/harddrive.py
+++ b/harddrive.py
@@ -28,6 +28,9 @@ log = logging.getLogger("anaconda")
# Install from one or more iso images
class HardDriveInstallMethod(ImageInstallMethod):
+ def getMethodUri(self):
+ return "file://%s" % self.tree
+
def copyFileToTemp(self, filename):
wasmounted = self.mediaIsMounted
self.switchMedia(1, filename)