diff options
author | Brian Coca <brian.coca+git@gmail.com> | 2016-06-28 15:24:18 -0400 |
---|---|---|
committer | Brian Coca <brian.coca+git@gmail.com> | 2016-06-28 15:24:59 -0400 |
commit | 9abdb1bb7c1417d05f357de22c99b0bfa1e29213 (patch) | |
tree | 70da63cf018fef1e7fa55cfada345501b386cce4 /lib/ansible | |
parent | f1e1558f4ff96bed99e63b54fa7168fefec09d9e (diff) | |
download | ansible-9abdb1bb7c1417d05f357de22c99b0bfa1e29213.tar.gz |
added skipped_reason for verbosity not met
fixes http://github.com/ansible/ansible-modules-core/issues/4062
Diffstat (limited to 'lib/ansible')
-rw-r--r-- | lib/ansible/plugins/action/debug.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/ansible/plugins/action/debug.py b/lib/ansible/plugins/action/debug.py index 08d973eaac..b0298b8aa0 100644 --- a/lib/ansible/plugins/action/debug.py +++ b/lib/ansible/plugins/action/debug.py @@ -73,6 +73,7 @@ class ActionModule(ActionBase): # force flag to make debug output module always verbose result['_ansible_verbose_always'] = True else: + result['skipped_reason'] = "Verbosity threshold not met." result['skipped'] = True return result |