Issue #4948 - add state_output argument to allow override of value configured in master

This commit is contained in:
Justin Slattery 2013-07-27 15:22:54 -04:00
parent 7062ff4366
commit 309d5c8cde

View File

@ -952,6 +952,14 @@ class SaltCMDOptionParser(OptionParser, ConfigDirMixIn, MergeConfigMixIn,
action='store_true',
help=('Run the salt command but don\'t wait for a reply')
)
self.add_option(
'--state_output',
default='full',
dest='state_output',
type=str,
help=('Override the configured state_output value for minion output'
'. Default: full')
)
self.add_option(
'--subset',
default=0,