From 37318ca0954fd6f32938206c230580271b349e4d Mon Sep 17 00:00:00 2001 From: Michael Leer Date: Tue, 1 Jul 2014 18:05:18 +0100 Subject: [PATCH] include default options. #7938 amend ansible-doc to include default options as per feature request #7938 --- bin/ansible-doc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bin/ansible-doc b/bin/ansible-doc index a77fff81302..9faff67507d 100755 --- a/bin/ansible-doc +++ b/bin/ansible-doc @@ -113,6 +113,9 @@ def get_man_text(doc): if 'choices' in opt: choices = ", ".join(str(i) for i in opt['choices']) desc = desc + " (Choices: " + choices + ")" + if 'default' in opt: + default = str(opt['default']) + desc = desc + " [Default: " + default + "]" text.append("%s\n" % textwrap.fill(tty_ify(desc), initial_indent=opt_indent, subsequent_indent=opt_indent))