mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-10 12:40:31 -07:00
locale_gen: fix/improvements (#9238)
* locale_gen: fix/improvements
* fix sanity
* add RV doc
* add integration test forcing mechanism=debian
- test is failing
* fix RETURN doc
* reformat yaml
* comment out the test for ubuntu_mode=True
* multiple changes:
- add changelog fragment
- improved docs
* normalize docs after rebasing
* Update changelogs/fragments/9131-locale-gen-rewrite.yml
* apply recommendations from review
* Update plugins/modules/locale_gen.py
Co-authored-by: Felix Fontein <felix@fontein.de>
* Update changelogs/fragments/9238-locale-gen-rewrite.yml
Co-authored-by: Felix Fontein <felix@fontein.de>
* Update plugins/modules/locale_gen.py
Co-authored-by: Felix Fontein <felix@fontein.de>
* Update plugins/modules/locale_gen.py
Co-authored-by: Felix Fontein <felix@fontein.de>
---------
Co-authored-by: Felix Fontein <felix@fontein.de>
(cherry picked from commit 6bb7a1cc73
)
Co-authored-by: Alexei Znamensky <103110+russoz@users.noreply.github.com>
19 lines
786 B
YAML
19 lines
786 B
YAML
---
|
|
####################################################################
|
|
# WARNING: These are designed specifically for Ansible tests #
|
|
# and should not be used as examples of how to write Ansible roles #
|
|
####################################################################
|
|
|
|
# Copyright (c) 2014, James Tanner <tanner.jc@gmail.com>
|
|
# 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: Bail out if not supported
|
|
ansible.builtin.meta: end_play
|
|
when: ansible_distribution not in ('Ubuntu', 'Debian')
|
|
|
|
- name: Run tests auto-detecting mechanism
|
|
ansible.builtin.include_tasks: basic.yml
|
|
loop: "{{ locale_list_basic }}"
|
|
loop_control:
|
|
loop_var: locale_basic
|