mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Merge pull request #2986 from wbowling/devel
Fixes apt_repository always reporting file uri repos as changed
This commit is contained in:
commit
b499f0754e
1 changed files with 4 additions and 2 deletions
|
@ -111,8 +111,10 @@ def main():
|
||||||
# http://myserver/path/to/repo free non-free
|
# http://myserver/path/to/repo free non-free
|
||||||
# deb http://myserver/path/to/repo free non-free
|
# deb http://myserver/path/to/repo free non-free
|
||||||
for i in repo_url.split():
|
for i in repo_url.split():
|
||||||
if 'http' in i:
|
for prot in ['http', 'file', 'ftp']:
|
||||||
repo_url = i
|
if prot in i:
|
||||||
|
repo_url = i
|
||||||
|
break
|
||||||
exists = repo_exists(module, repo_url)
|
exists = repo_exists(module, repo_url)
|
||||||
|
|
||||||
rc = 0
|
rc = 0
|
||||||
|
|
Loading…
Reference in a new issue