mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-28 07:31:23 -07:00
Small cleanup to use class attribute directly instead of property for transport names
This commit is contained in:
parent
fee73100c4
commit
de306eb5da
3 changed files with 3 additions and 13 deletions
|
@ -43,10 +43,7 @@ except ImportError:
|
||||||
class Connection(ConnectionBase):
|
class Connection(ConnectionBase):
|
||||||
''' Local based connections '''
|
''' Local based connections '''
|
||||||
|
|
||||||
@property
|
transport = 'local'
|
||||||
def transport(self):
|
|
||||||
''' used to identify this connection object '''
|
|
||||||
return 'local'
|
|
||||||
|
|
||||||
def _connect(self):
|
def _connect(self):
|
||||||
''' connect to the local host; nothing to do here '''
|
''' connect to the local host; nothing to do here '''
|
||||||
|
|
|
@ -126,10 +126,7 @@ SFTP_CONNECTION_CACHE = {}
|
||||||
class Connection(ConnectionBase):
|
class Connection(ConnectionBase):
|
||||||
''' SSH based connections with Paramiko '''
|
''' SSH based connections with Paramiko '''
|
||||||
|
|
||||||
@property
|
transport = 'paramiko'
|
||||||
def transport(self):
|
|
||||||
''' used to identify this connection object from other classes '''
|
|
||||||
return 'paramiko'
|
|
||||||
|
|
||||||
def _cache_key(self):
|
def _cache_key(self):
|
||||||
return "%s__%s__" % (self._play_context.remote_addr, self._play_context.remote_user)
|
return "%s__%s__" % (self._play_context.remote_addr, self._play_context.remote_user)
|
||||||
|
|
|
@ -61,6 +61,7 @@ except ImportError:
|
||||||
class Connection(ConnectionBase):
|
class Connection(ConnectionBase):
|
||||||
'''WinRM connections over HTTP/HTTPS.'''
|
'''WinRM connections over HTTP/HTTPS.'''
|
||||||
|
|
||||||
|
transport = 'winrm'
|
||||||
module_implementation_preferences = ('.ps1', '')
|
module_implementation_preferences = ('.ps1', '')
|
||||||
become_methods = []
|
become_methods = []
|
||||||
allow_executable = False
|
allow_executable = False
|
||||||
|
@ -77,11 +78,6 @@ class Connection(ConnectionBase):
|
||||||
|
|
||||||
super(Connection, self).__init__(*args, **kwargs)
|
super(Connection, self).__init__(*args, **kwargs)
|
||||||
|
|
||||||
@property
|
|
||||||
def transport(self):
|
|
||||||
''' used to identify this connection object from other classes '''
|
|
||||||
return 'winrm'
|
|
||||||
|
|
||||||
def set_host_overrides(self, host):
|
def set_host_overrides(self, host):
|
||||||
'''
|
'''
|
||||||
Override WinRM-specific options from host variables.
|
Override WinRM-specific options from host variables.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue