You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
331 B

  1. ---
  2. - name: Configure Locales
  3. hosts: [ 'debian10' ]
  4. tasks:
  5. - name: Setup EN & RU UTF-8 locales
  6. shell: |
  7. apt install -y locales && \
  8. sed -i 's/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /etc/locale.gen && \
  9. sed -i 's/# ru_RU.UTF-8 UTF-8/ru_RU.UTF-8 UTF-8/' /etc/locale.gen && \
  10. locale-gen