Initial commit with not yet working docker networking

Signed-off-by: TuDatTr <tuan-dat.tran@tudattr.dev>
This commit is contained in:
TuDatTr
2022-11-30 23:49:07 +01:00
commit 0ab1c043d6
25 changed files with 499 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
---
- name: Update and upgrade packages
apt:
update_cache: yes
upgrade: yes
autoremove: yes
become: yes
- name: Install extra packages
apt:
name: "{{ common_packages }}"
state: present
become: yes

View File

@@ -0,0 +1,3 @@
---
- include_tasks: time.yml
- include_tasks: essential.yml

View File

@@ -0,0 +1,4 @@
---
- name: Set timezone to "{{ timezone }}"
community.general.timezone:
name: "{{ timezone }}"