mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-07 22:02:50 +00:00
Merge pull request #2911 from sergevanginderachter/apt-repo-ppa-bug
fix an idempotence bug in apt-repository where 'ppa' is used in a plain http://ppa. ....
This commit is contained in:
@@ -103,7 +103,7 @@ def main():
|
|||||||
state = module.params['state']
|
state = module.params['state']
|
||||||
|
|
||||||
repo_url = repo
|
repo_url = repo
|
||||||
if 'ppa' in repo_url:
|
if 'ppa:' in repo_url and not 'http://' in repo_url:
|
||||||
# looks like ppa:nginx/stable
|
# looks like ppa:nginx/stable
|
||||||
repo_url = repo.split(':')[1]
|
repo_url = repo.split(':')[1]
|
||||||
elif len(repo_url.split(' ')) > 1:
|
elif len(repo_url.split(' ')) > 1:
|
||||||
|
|||||||
Reference in New Issue
Block a user