Adapt module to use new module._name property (#3918)
This is in line with the change from ansible/ansible#16087
This commit is contained in:
parent
c6fb3ceb85
commit
6bcf88ef54
1 changed files with 2 additions and 2 deletions
|
@ -105,8 +105,6 @@ from threading import Thread, Lock
|
||||||
# we must import this here at the top so we can use get_module_path()
|
# we must import this here at the top so we can use get_module_path()
|
||||||
from ansible.module_utils.basic import *
|
from ansible.module_utils.basic import *
|
||||||
|
|
||||||
syslog.openlog('ansible-%s' % os.path.basename(__file__))
|
|
||||||
|
|
||||||
# the chunk size to read and send, assuming mtu 1500 and
|
# the chunk size to read and send, assuming mtu 1500 and
|
||||||
# leaving room for base64 (+33%) encoding and header (100 bytes)
|
# leaving room for base64 (+33%) encoding and header (100 bytes)
|
||||||
# 4 * (975/3) + 100 = 1400
|
# 4 * (975/3) + 100 = 1400
|
||||||
|
@ -667,6 +665,8 @@ def main():
|
||||||
supports_check_mode=True
|
supports_check_mode=True
|
||||||
)
|
)
|
||||||
|
|
||||||
|
syslog.openlog('ansible-%s' % module._name)
|
||||||
|
|
||||||
password = base64.b64decode(module.params['password'])
|
password = base64.b64decode(module.params['password'])
|
||||||
port = int(module.params['port'])
|
port = int(module.params['port'])
|
||||||
timeout = int(module.params['timeout'])
|
timeout = int(module.params['timeout'])
|
||||||
|
|
Loading…
Reference in a new issue