mirror of https://github.com/ansible/ansible.git
Do not treat leading underscore in plugin names as attempted deprecation.
parent
8aecd1f9b2
commit
0c9f1989a7
@ -0,0 +1,2 @@
|
||||
bugfixes:
|
||||
- "ansible-test validate-modules sanity test - do not treat leading underscores for plugin names in collections as an attempted deprecation (https://github.com/ansible/ansible/pull/82575)."
|
@ -0,0 +1,22 @@
|
||||
#!/usr/bin/python
|
||||
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
DOCUMENTATION = '''
|
||||
module: _not_deprecated
|
||||
short_description: This module is not deprecated
|
||||
description: Its name has a leading underscore, but it is not deprecated.
|
||||
author:
|
||||
- Ansible Core Team
|
||||
'''
|
||||
|
||||
EXAMPLES = '''#'''
|
||||
RETURN = ''''''
|
||||
|
||||
from ansible.module_utils.basic import AnsibleModule
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
module = AnsibleModule(argument_spec=dict())
|
||||
module.exit_json()
|
Loading…
Reference in New Issue