aboutsummaryrefslogtreecommitdiffstats
path: root/roles/locale/tasks/main.yml
blob: e0b5b6f4801cc0126589ee7bda9dded0a3c9fcfb (plain)
1
2
3
4
5
6
7
8
9
10
- name: set default locale
  lineinfile:
    dest: /etc/locale.conf
    regexp: ^LANG=
    line: 'LANG={{ locale }}'

- name: install glibc language pack
  dnf:
    name: "glibc-langpack-{{ locale | split('_') | first }}"
    state: present