mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Add support to bin/ansible for --connection option
This commit is contained in:
parent
b5061bb62e
commit
fdee1d3459
1 changed files with 2 additions and 1 deletions
|
@ -61,6 +61,7 @@ class Cli(object):
|
||||||
runas_opts=True,
|
runas_opts=True,
|
||||||
async_opts=True,
|
async_opts=True,
|
||||||
output_opts=True,
|
output_opts=True,
|
||||||
|
connect_opts=True,
|
||||||
|
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -97,7 +98,7 @@ class Cli(object):
|
||||||
remote_port=options.remote_port, forks=options.forks,
|
remote_port=options.remote_port, forks=options.forks,
|
||||||
background=options.seconds, pattern=pattern,
|
background=options.seconds, pattern=pattern,
|
||||||
callbacks=self.callbacks, sudo=options.sudo, verbose=True,
|
callbacks=self.callbacks, sudo=options.sudo, verbose=True,
|
||||||
debug=options.debug
|
transport=options.connection, debug=options.debug
|
||||||
)
|
)
|
||||||
return (runner, runner.run())
|
return (runner, runner.run())
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue