Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make verbose option for ansible config block more flexible #135

Merged
merged 2 commits into from
Mar 9, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/source/providers.rst
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ Simple Example
ansible:
playbook: playbook.yml
sudo: True
verbose: True
verbose: vvvv

vagrant:
raw_config_args:
Expand Down Expand Up @@ -102,7 +102,7 @@ This example is far more extensive than you likely need and it demonstrates lots
playbook: playbook.yml
sudo: True
sudo_user: False
verbose: True
verbose: vvvv

vagrant:
raw_config_args:
Expand Down
3 changes: 3 additions & 0 deletions molecule/ansible_playbook.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,9 @@ def parse_arg(self, name, value):

# verbose is weird, must be -vvvv not verbose=vvvv
if name == 'verbose' and value:
# for cases where someone passes in verbose: True
if value is True:
value = 'vvvv'
self.cli_pos.append('-' + value)
return

Expand Down