mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Merge pull request #31299 from rallytime/fix-29795
Allow state-output and state-verbose default settings to be set from CLI
This commit is contained in:
commit
d20a30b8be
1 changed files with 2 additions and 2 deletions
|
@ -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')
|
||||
|
|
Loading…
Add table
Reference in a new issue