summaryrefslogtreecommitdiffstats
path: root/urlinstall.py
diff options
context:
space:
mode:
authorPaul Nasrat <pnasrat@redhat.com>2005-11-15 02:30:23 +0000
committerPaul Nasrat <pnasrat@redhat.com>2005-11-15 02:30:23 +0000
commit23b14c0567ef10d7540229854e4453c27a0adf91 (patch)
treeb9b616fc909bf7895f4921d849a8bf1cd98268b2 /urlinstall.py
parent7285804934940a5a53356be539c9c9db80eccba9 (diff)
downloadanaconda-23b14c0567ef10d7540229854e4453c27a0adf91.tar.gz
anaconda-23b14c0567ef10d7540229854e4453c27a0adf91.tar.xz
anaconda-23b14c0567ef10d7540229854e4453c27a0adf91.zip
Use getMethodUri to configure backend
Diffstat (limited to 'urlinstall.py')
-rw-r--r--urlinstall.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/urlinstall.py b/urlinstall.py
index 9e4df57ba..9b0e3f987 100644
--- a/urlinstall.py
+++ b/urlinstall.py
@@ -13,7 +13,6 @@
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
#
-from hdrlist import groupSetFromCompsFile, HeaderList
from installmethod import InstallMethod, FileCopyException
import os
import rpm
@@ -160,6 +159,9 @@ class UrlInstallMethod(InstallMethod):
def setIntf(self, intf):
self.intf = intf
+ def getMethodUri(self):
+ return self.baseUrl
+
def __init__(self, url, rootPath, intf):
InstallMethod.__init__(self, url, rootPath, intf)