From f101a9bd7311999554e6a2e919c06f0a7ab3abb4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Moser?= Date: Fri, 30 Dec 2016 09:06:49 +0100 Subject: [PATCH] icinga2_feature: Set LANG since we rely on the output by using regex (#19742) - remove common return - add ANSIBLE_METADATA --- lib/ansible/modules/monitoring/icinga2_feature.py | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/lib/ansible/modules/monitoring/icinga2_feature.py b/lib/ansible/modules/monitoring/icinga2_feature.py index f44f93003f0..9cd1198c0f1 100644 --- a/lib/ansible/modules/monitoring/icinga2_feature.py +++ b/lib/ansible/modules/monitoring/icinga2_feature.py @@ -24,6 +24,10 @@ You should have received a copy of the GNU General Public License along with Ansible. If not, see . """ +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__':