Commit a0616d2d authored by Dmitriy Safronov's avatar Dmitriy Safronov
Browse files

fix 6

parent 5de05be1
Loading
Loading
Loading
Loading
+9 −2
Original line number Diff line number Diff line
@@ -58,5 +58,12 @@

#

- name: Force locale to {{ default_locale }}
  ansible.builtin.shell: update-locale --reset LANG={{ default_locale }} LC_ALL={{ default_locale }}
- name: Template a file to /etc/default/locale
  ansible.builtin.copy:
    content: |
      LANG={{ default_locale }}
      LC_ALL={{ default_locale }}
    dest: /etc/default/locale
    owner: root
    group: root
    mode: "0644"