Adapt module to use new module._name property (#3918)

This is in line with the change from ansible/ansible#16087
reviewable/pr18780/r1
Dag Wieers 8 years ago committed by Brian Coca
parent 3f7a935932
commit c14d4755e6

@ -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…
Cancel
Save