mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-23 13:20:23 -07:00
Move plugin option settings. (#44774)
* Move plugin option settings. * Add default value and clear after use.
This commit is contained in:
parent
0c3216c565
commit
86f96d0212
5 changed files with 17 additions and 15 deletions
|
@ -301,6 +301,7 @@ class NetworkConnectionBase(ConnectionBase):
|
|||
self._local.set_options()
|
||||
|
||||
self._implementation_plugins = []
|
||||
self._cached_variables = (None, None, None)
|
||||
|
||||
# reconstruct the socket_path and set instance values accordingly
|
||||
self._ansible_playbook_pid = kwargs.get('ansible_playbook_pid')
|
||||
|
@ -317,6 +318,11 @@ class NetworkConnectionBase(ConnectionBase):
|
|||
return method
|
||||
raise AttributeError("'%s' object has no attribute '%s'" % (self.__class__.__name__, name))
|
||||
|
||||
def _connect(self):
|
||||
for plugin in self._implementation_plugins:
|
||||
plugin.set_options(*self._cached_variables)
|
||||
self._cached_variables = (None, None, None)
|
||||
|
||||
def exec_command(self, cmd, in_data=None, sudoable=True):
|
||||
return self._local.exec_command(cmd, in_data, sudoable)
|
||||
|
||||
|
@ -344,14 +350,7 @@ class NetworkConnectionBase(ConnectionBase):
|
|||
|
||||
def set_options(self, task_keys=None, var_options=None, direct=None):
|
||||
super(NetworkConnectionBase, self).set_options(task_keys=task_keys, var_options=var_options, direct=direct)
|
||||
self.set_implementation_plugin_options(task_keys=task_keys, var_options=var_options, direct=direct)
|
||||
|
||||
def set_implementation_plugin_options(self, task_keys=None, var_options=None, direct=None):
|
||||
'''
|
||||
initialize implementation plugin options
|
||||
'''
|
||||
for plugin in self._implementation_plugins:
|
||||
plugin.set_options(task_keys=task_keys, var_options=var_options, direct=direct)
|
||||
self._cached_variables = (task_keys, var_options, direct)
|
||||
|
||||
def _update_connection_state(self):
|
||||
'''
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue