b93d92ef9a
* Set alter_sys=True instead of False to address backwards incompat * ci_complete * Add integration test * ci_complete * sanity * ci_complete * Changelog fragment * Update import test and validate-modules to match
23 lines
491 B
Python
23 lines
491 B
Python
#!/usr/bin/python
|
|
# https://github.com/ansible/ansible/issues/64664
|
|
# https://github.com/ansible/ansible/issues/64479
|
|
|
|
from __future__ import (absolute_import, division, print_function)
|
|
__metaclass__ = type
|
|
|
|
import sys
|
|
|
|
from ansible.module_utils.basic import AnsibleModule
|
|
|
|
|
|
def main():
|
|
module = AnsibleModule({})
|
|
|
|
this_module = sys.modules[__name__]
|
|
module.exit_json(
|
|
failed=not getattr(this_module, 'AnsibleModule', False)
|
|
)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|