Move files to this submodule
This commit is contained in:
commit
ed8986fc5c
10 changed files with 165 additions and 0 deletions
21
tasks/config.yml
Normal file
21
tasks/config.yml
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
- name: copy base configs
|
||||
copy:
|
||||
src: etc/apt/apt.conf.d/20auto-upgrades
|
||||
dest: /etc/apt/apt.conf.d/20auto-upgrades
|
||||
|
||||
- name: set local timezone
|
||||
file:
|
||||
state: link
|
||||
src: /usr/share/zoneinfo/Europe/Berlin
|
||||
dest: /etc/localtime
|
||||
|
||||
- name: Ensure the US locale exists
|
||||
community.general.locale_gen:
|
||||
name: en_US.UTF-8
|
||||
state: present
|
||||
|
||||
- name: Ensure the DE locale exists
|
||||
community.general.locale_gen:
|
||||
name: de_DE.UTF-8
|
||||
state: present
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue