icinga2_feature: Set LANG since we rely on the output by using regex (#19742)
- remove common return - add ANSIBLE_METADATA
This commit is contained in:
parent
5e17eb3053
commit
f101a9bd73
1 changed files with 6 additions and 4 deletions
|
@ -24,6 +24,10 @@ You should have received a copy of the GNU General Public License
|
|||
along with Ansible. If not, see <http://www.gnu.org/licenses/>.
|
||||
"""
|
||||
|
||||
ANSIBLE_METADATA = {'status': ['preview'],
|
||||
'supported_by': 'community',
|
||||
'version': '1.0'}
|
||||
|
||||
DOCUMENTATION = '''
|
||||
---
|
||||
module: icinga2_feature
|
||||
|
@ -54,10 +58,7 @@ EXAMPLES = '''
|
|||
'''
|
||||
|
||||
RETURN = '''
|
||||
changed:
|
||||
description: If module has done a change
|
||||
returned: success
|
||||
type: string
|
||||
#
|
||||
'''
|
||||
|
||||
from ansible.module_utils.basic import AnsibleModule
|
||||
|
@ -131,6 +132,7 @@ def main():
|
|||
supports_check_mode=True
|
||||
)
|
||||
|
||||
module.run_command_environ_update = dict(LANG='C', LC_ALL='C', LC_MESSAGES='C', LC_CTYPE='C')
|
||||
Icinga2FeatureHelper(module).manage()
|
||||
|
||||
if __name__ == '__main__':
|
||||
|
|
Loading…
Reference in a new issue