Initial commit

This commit is contained in:
2022-03-17 02:59:54 +01:00
commit 4789552a6e
7 changed files with 185 additions and 0 deletions

View File

@@ -0,0 +1 @@
timezone: Europe/Stockholm

2
roles/base/meta/main.yml Normal file
View File

@@ -0,0 +1,2 @@
dependencies:
- role: update_cache

13
roles/base/tasks/main.yml Normal file
View File

@@ -0,0 +1,13 @@
- name: Install common tools
package:
name: "{{ item }}"
with_items:
- curl
- gnupg
- vim
- ca-certificates
- s-nail
- name: Set the timezone
timezone:
name: "{{ timezone }}"