]> git.phdru.name Git - ansible.git/blob - playbooks/debian/roles/init-system/handlers/main.yml
Feat(debian): Change directory structure
[ansible.git] / playbooks / debian / roles / init-system / handlers / main.yml
1 - name: Configure locales
2   become: true
3   lineinfile:
4     path: /etc/locale.gen
5     regexp: "^{{ item }}"
6     line: "{{ item }}"
7   loop: [
8       'en_US ISO-8859-1',
9       'ru_RU.KOI8-R KOI8-R',
10       'ru_RU.UTF-8 UTF-8',
11   ]
12   notify: Regenerate locales
13
14 - name: Regenerate locales
15   become: true
16   command: /usr/sbin/locale-gen