Allow state-output and state-verbose default settings to be set from CLI

Fixes #29795
This commit is contained in:
rallytime 2016-02-17 20:02:18 -07:00
parent dc2e7c8956
commit 483f31922b

View file

@ -1076,14 +1076,14 @@ class OutputOptionsMixIn(six.with_metaclass(MixInMeta, object)):
)
group.add_option(
'--state-output', '--state_output',
default='full',
default=None,
help=('Override the configured state_output value for minion '
'output. One of full, terse, mixed, changes or filter. '
'Default: full.')
)
group.add_option(
'--state-verbose', '--state_verbose',
default=True,
default=None,
help=('Override the configured state_verbose value for minion '
'output. Set to True or False'
'Default: True')