restore connection options from cli

fixes #30720

(cherry picked from commit bed7cd8b11)
pull/31343/head
Brian Coca 8 years ago committed by Toshio Kuratomi
parent 6dab8b7bfa
commit 8ccb719dfc

@ -175,6 +175,9 @@ RESET_VARS = (
'ansible_ssh_executable',
)
OPTION_FLAGS = ('connection', 'remote_user', 'private_key_file', 'verbosity', 'force_handlers', 'step', 'start_at_task', 'diff',
'ssh_common_args', 'docker_extra_args', 'sftp_extra_args', 'scp_extra_args', 'ssh_extra_args')
class PlayContext(Base):
@ -338,9 +341,8 @@ class PlayContext(Base):
self.diff = boolean(options.diff, strict=False)
# general flags (should we move out?)
# for flag in ('connection', 'remote_user', 'private_key_file', 'verbosity', 'force_handlers', 'step', 'start_at_task', 'diff'):
# should only be 'non plugin' flags
for flag in ('connection', 'remote_user', 'private_key_file', 'verbosity', 'force_handlers', 'step', 'start_at_task', 'diff'):
for flag in OPTION_FLAGS:
attribute = getattr(options, flag, False)
if attribute:
setattr(self, flag, attribute)

Loading…
Cancel
Save