verbose option is not being used, so remove it. debug variable still exists.

This commit is contained in:
Michael DeHaan 2012-04-16 23:47:41 -04:00
commit 3f26a1c7f6
6 changed files with 1 additions and 8 deletions

View file

@ -90,7 +90,7 @@ class Cli(object):
forks=options.forks,
background=options.seconds, pattern=pattern,
callbacks=self.callbacks, sudo=options.sudo,
sudo_pass=sudopass, verbose=True,
sudo_pass=sudopass,
transport=options.connection, debug=options.debug
)
return (runner, runner.run())

View file

@ -67,7 +67,6 @@ def main(args):
override_hosts=override_hosts,
forks=options.forks,
debug=options.debug,
verbose=True,
remote_user=options.remote_user,
remote_pass=sshpass,
callbacks=playbook_cb,