mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-25 16:06:43 +00:00
make bin/ansible error output consistent for shell module as for the command module when no arguments
This commit is contained in:
@@ -93,8 +93,9 @@ class Cli(object):
|
||||
print ' %s' % host
|
||||
sys.exit(0)
|
||||
|
||||
if options.module_name == 'command' and not options.module_args:
|
||||
print >>sys.stderr, "No argument passed to command module"
|
||||
if ((options.module_name == 'command' or options.module_name == 'shell')
|
||||
and not options.module_args):
|
||||
print >>sys.stderr, "No argument passed to %s module" % options.module_name
|
||||
sys.exit(1)
|
||||
|
||||
sshpass = None
|
||||
|
||||
Reference in New Issue
Block a user