From 3bcf7bd2adb443b881365506dfa3348b0c465264 Mon Sep 17 00:00:00 2001 From: Ahmed Abdelhalim Date: Wed, 22 Oct 2025 14:29:02 +0200 Subject: Refactor naming of packages and services to follow same conventions --- roles/locales/tasks/main.yml | 2 +- roles/locales/vars/archlinux.yml | 2 +- roles/locales/vars/debian.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) (limited to 'roles/locales') diff --git a/roles/locales/tasks/main.yml b/roles/locales/tasks/main.yml index 9a0ec6ee..e68426af 100644 --- a/roles/locales/tasks/main.yml +++ b/roles/locales/tasks/main.yml @@ -5,7 +5,7 @@ - name: "Ensure locales package is installed" become: true ansible.builtin.package: - name: "{{ locales_pkg }}" + name: "{{ locales_package }}" state: "present" - name: "Read locale.gen file" diff --git a/roles/locales/vars/archlinux.yml b/roles/locales/vars/archlinux.yml index 10e7754b..aacd6dab 100644 --- a/roles/locales/vars/archlinux.yml +++ b/roles/locales/vars/archlinux.yml @@ -1,2 +1,2 @@ --- -locales_pkg: "glibc" +locales_package: "glibc" diff --git a/roles/locales/vars/debian.yml b/roles/locales/vars/debian.yml index 0bd86457..0af057a8 100644 --- a/roles/locales/vars/debian.yml +++ b/roles/locales/vars/debian.yml @@ -1,2 +1,2 @@ --- -locales_pkg: "locales" +locales_package: "locales" -- cgit v1.2.3