Commit bce8ac55 by Alexander Gubin

zypper_repository: Remove trailing "/". Identifies "logically" identical repos.

Example: ftp://download.nvidia.com/opensuse/12.2 == ftp://download.nvidia.com/opensuse/12.2/
parent dc1f233e
...@@ -105,7 +105,7 @@ def repo_exists(module, **kwargs): ...@@ -105,7 +105,7 @@ def repo_exists(module, **kwargs):
for k, v in realrepo.items(): for k, v in realrepo.items():
if k in repocmp: if k in repocmp:
if v != repocmp[k]: if v.rstrip("/") != repocmp[k].rstrip("/"):
return False return False
return True return True
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment