mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-22 18:00:35 +00:00
ansible: Remove erroneous whitespace
This commit is contained in:
parent
ddaf40289b
commit
7913246c2d
1 changed files with 1 additions and 1 deletions
|
@ -73,7 +73,7 @@ class RunAnsiblePlaybook(Task):
|
||||||
if 'tags' in info.manifest.plugins['ansible']:
|
if 'tags' in info.manifest.plugins['ansible']:
|
||||||
cmd.extend(['--tags', ','.join(info.manifest.plugins['ansible']['tags'])])
|
cmd.extend(['--tags', ','.join(info.manifest.plugins['ansible']['tags'])])
|
||||||
if 'skip_tags' in info.manifest.plugins['ansible']:
|
if 'skip_tags' in info.manifest.plugins['ansible']:
|
||||||
cmd.extend(['--skip-tags' , ','.join(info.manifest.plugins['ansible']['skip_tags'])])
|
cmd.extend(['--skip-tags', ','.join(info.manifest.plugins['ansible']['skip_tags'])])
|
||||||
if 'opt_flags' in info.manifest.plugins['ansible']:
|
if 'opt_flags' in info.manifest.plugins['ansible']:
|
||||||
# Should probably do proper validation on these, but I don't think it should be used very often.
|
# Should probably do proper validation on these, but I don't think it should be used very often.
|
||||||
cmd.extend(info.manifest.plugins['ansible']['opt_flags'])
|
cmd.extend(info.manifest.plugins['ansible']['opt_flags'])
|
||||||
|
|
Loading…
Add table
Reference in a new issue