initialize module name

removing verbosity exposed missing name at certain stages, initialize to file name
and update later once module args are parsed

(cherry picked from commit cea1acf1462a323dea976ecfa0b1a9e403b4e31b)
This commit is contained in:
Brian Coca 2016-11-29 12:44:12 -05:00
parent b1e44d1195
commit 1bdf25561a

View file

@ -635,6 +635,7 @@ class AnsibleModule(object):
see library/* for examples
'''
self._name = os.path.basename(__file__) #initialize name until we can parse from options
self.argument_spec = argument_spec
self.supports_check_mode = supports_check_mode
self.check_mode = False