mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
1ab2a5f1bc
* Add default license header to files which have no copyright or license header yet. * yml extension should have been xml...
99 lines
2.2 KiB
YAML
99 lines
2.2 KiB
YAML
---
|
|
# Copyright (c) Ansible Project
|
|
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
- name: Is the locale we're going to test against installed?
|
|
shell: locale -a | grep pt_BR
|
|
register: initial_state
|
|
ignore_errors: True
|
|
|
|
- name: Make sure the locale is not installed
|
|
locale_gen:
|
|
name: pt_BR
|
|
state: absent
|
|
|
|
- name: Is the locale present?
|
|
shell: locale -a | grep pt_BR
|
|
register: cleaned
|
|
ignore_errors: True
|
|
|
|
- name: Make sure the locale is not present
|
|
assert:
|
|
that:
|
|
- "cleaned.rc == 1"
|
|
|
|
- name: Install the locale
|
|
locale_gen:
|
|
name: pt_BR
|
|
state: present
|
|
register: output
|
|
|
|
- name: Is the locale present?
|
|
shell: locale -a | grep pt_BR
|
|
register: post_check_output
|
|
ignore_errors: True
|
|
|
|
- name: Make sure the locale is present and we say we installed it
|
|
assert:
|
|
that:
|
|
- "post_check_output.rc == 0"
|
|
- "output.changed"
|
|
|
|
- name: Install the locale a second time
|
|
locale_gen:
|
|
name: pt_BR
|
|
state: present
|
|
register: output
|
|
|
|
- name: Is the locale present?
|
|
shell: locale -a | grep pt_BR
|
|
register: post_check_output
|
|
ignore_errors: True
|
|
|
|
- name: Make sure the locale is present and we reported no change
|
|
assert:
|
|
that:
|
|
- "post_check_output.rc == 0"
|
|
- "not output.changed"
|
|
|
|
- name: Remove the locale
|
|
locale_gen:
|
|
name: pt_BR
|
|
state: absent
|
|
register: output
|
|
|
|
- name: Is the locale present?
|
|
shell: locale -a | grep pt_BR
|
|
register: post_check_output
|
|
ignore_errors: True
|
|
|
|
- name: Make sure the locale is absent and we reported a change
|
|
assert:
|
|
that:
|
|
- "post_check_output.rc == 1"
|
|
- "output.changed"
|
|
|
|
- name: Remove the locale a second time
|
|
locale_gen:
|
|
name: pt_BR
|
|
state: absent
|
|
register: output
|
|
|
|
- name: Is the locale present?
|
|
shell: locale -a | grep pt_BR
|
|
register: post_check_output
|
|
ignore_errors: True
|
|
|
|
- name: Make sure the locale is absent and we reported no change
|
|
assert:
|
|
that:
|
|
- "post_check_output.rc == 1"
|
|
- "not output.changed"
|
|
|
|
# Cleanup
|
|
- name: Reinstall the locale we tested against if it was initially installed
|
|
locale_gen:
|
|
name: pt_BR
|
|
state: present
|
|
when: initial_state.rc == 0
|