2 Commits

Author SHA1 Message Date
99db61d1f1 v0.3.3 - getting the tag right 2025-11-07 16:56:37 +01:00
57f9ce19d6 role(locale_config): finally fix glitch in check mode 2025-11-07 16:55:36 +01:00
2 changed files with 2 additions and 2 deletions

View File

@@ -8,7 +8,7 @@ namespace: dede
name: common
# The version of the collection. Must be compatible with semantic versioning
version: 0.3.1
version: 0.3.3
# The path to the Markdown (.md) readme file. This path is relative to the root of the collection
readme: README.md

View File

@@ -18,11 +18,11 @@
register: locale_config_status
changed_when: false
ignore_errors: true
check_mode: false
ansible.builtin.command:
cmd: localectl status
- name: remember current LANG config
when: not locale_config_status is skipped
ansible.builtin.set_fact:
locale_config_current: "{{ locale_config_status.stdout | regex_search('LANG=([^\n]+)', '\\1') | first }}"