Quote the repository string when appending it to the command line in the apt_repository module.

This commit is contained in:
Sebastien Bocahu 2012-08-13 19:36:08 +02:00
parent 41422e852c
commit c7ada98af0

View file

@ -61,7 +61,7 @@ def main():
repo = module.params['repo']
state = module.params['state']
rc, out, err = _run('%s %s --remove' % (add_apt_repository, repo))
rc, out, err = _run('%s "%s" --remove' % (add_apt_repository, repo))
existed = 'Error' not in out
if state == 'absent':
@ -70,7 +70,7 @@ def main():
else:
module.exit_json(changed=True, repo=repo, state=state)
cmd = '%s %s' % (add_apt_repository, repo)
cmd = '%s "%s"' % (add_apt_repository, repo)
if platform.dist()[0] == 'debian' or float(platform.dist()[1]) >= 11.10:
cmd = cmd + ' -y'