FEATURE: deployment playbook takes care of locale and time too
This commit is contained in:
@@ -12,4 +12,7 @@
|
|||||||
ansible.builtin.include_tasks: remove_packages.yaml
|
ansible.builtin.include_tasks: remove_packages.yaml
|
||||||
|
|
||||||
- name: Create and set up a new user
|
- name: Create and set up a new user
|
||||||
ansible.builtin.include_tasks: create_new_user.yaml
|
ansible.builtin.include_tasks: create_new_user.yaml
|
||||||
|
|
||||||
|
- name: Set locale and time
|
||||||
|
ansible.builtin.include_tasks: set_locale_and_time.yaml
|
||||||
@@ -0,0 +1,11 @@
|
|||||||
|
---
|
||||||
|
- name: Set locale
|
||||||
|
ansible.builtin.locale_gen:
|
||||||
|
name:
|
||||||
|
- en_US.UTF-8
|
||||||
|
- ru_RU.UTF-8
|
||||||
|
state: present
|
||||||
|
|
||||||
|
- name: Set time
|
||||||
|
ansible.builtin.timezone:
|
||||||
|
name: Europe/Samara
|
||||||
Reference in New Issue
Block a user