2020-04-07 14:14:01 +02:00
|
|
|
From f2b465f41575a8a28d4762f9647ea30df6a64637 Mon Sep 17 00:00:00 2001
|
2019-09-06 14:06:25 +02:00
|
|
|
From: Matei Albu <malbu@suse.de>
|
|
|
|
Date: Fri, 15 Feb 2019 14:34:13 +0100
|
|
|
|
Subject: [PATCH] Strip trailing "/" from repo.uri when comparing repos
|
|
|
|
in apktpkg.mod_repo (bsc#1146192)
|
|
|
|
|
|
|
|
(cherry picked from commit af85627)
|
|
|
|
---
|
|
|
|
salt/modules/aptpkg.py | 2 +-
|
|
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
|
|
|
|
diff --git a/salt/modules/aptpkg.py b/salt/modules/aptpkg.py
|
2020-04-07 14:14:01 +02:00
|
|
|
index a5b039fc79..bafad40efe 100644
|
2019-09-06 14:06:25 +02:00
|
|
|
--- a/salt/modules/aptpkg.py
|
|
|
|
+++ b/salt/modules/aptpkg.py
|
2020-04-07 14:14:01 +02:00
|
|
|
@@ -2365,7 +2365,7 @@ def mod_repo(repo, saltenv='base', **kwargs):
|
2019-09-06 14:06:25 +02:00
|
|
|
# and the resulting source line. The idea here is to ensure
|
|
|
|
# we are not returning bogus data because the source line
|
|
|
|
# has already been modified on a previous run.
|
|
|
|
- repo_matches = source.type == repo_type and source.uri == repo_uri and source.dist == repo_dist
|
|
|
|
+ repo_matches = source.type == repo_type and source.uri.rstrip('/') == repo_uri.rstrip('/') and source.dist == repo_dist
|
|
|
|
kw_matches = source.dist == kw_dist and source.type == kw_type
|
|
|
|
|
|
|
|
if repo_matches or kw_matches:
|
|
|
|
--
|
2019-11-28 16:41:55 +01:00
|
|
|
2.16.4
|
2019-09-06 14:06:25 +02:00
|
|
|
|
|
|
|
|