From 86dce706f512e8596cd877fe392dab2f678d425d Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Fri, 31 Dec 2010 03:27:03 -0800 Subject: Omit user:pass@ from binhost Packages cache path. --- pym/portage/dbapi/bintree.py | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) (limited to 'pym/portage') diff --git a/pym/portage/dbapi/bintree.py b/pym/portage/dbapi/bintree.py index 68d6845db..2da7799e8 100644 --- a/pym/portage/dbapi/bintree.py +++ b/pym/portage/dbapi/bintree.py @@ -733,6 +733,14 @@ class binarytree(object): parsed_url = urlparse(base_url) host = parsed_url.netloc port = parsed_url.port + user = None + passwd = None + user_passwd = "" + if "@" in host: + user, host = host.split("@", 1) + user_passwd = user + "@" + if ":" in user: + user, passwd = user.split(":", 1) port_args = [] if port is not None: port_str = ":%s" % (port,) @@ -775,7 +783,7 @@ class binarytree(object): if port is not None: port_args = ['-P', "%s" % (port,)] proc = subprocess.Popen(['sftp'] + port_args + \ - [host + ":" + path, tmp_filename]) + [user_passwd + host + ":" + path, tmp_filename]) if proc.wait() != os.EX_OK: raise f = open(tmp_filename, 'rb') @@ -783,7 +791,8 @@ class binarytree(object): if port is not None: port_args = ['-p', "%s" % (port,)] proc = subprocess.Popen(['ssh'] + port_args + \ - [host, '--', 'cat', path], stdout=subprocess.PIPE) + [user_passwd + host, '--', 'cat', path], + stdout=subprocess.PIPE) f = proc.stdout else: raise -- cgit v1.2.3-1-g7c22