Initial commit

This commit is contained in:
2022-06-26 19:46:33 +02:00
commit 818d34657c
106 changed files with 1390 additions and 0 deletions

16
ankeborg.yml Normal file
View File

@@ -0,0 +1,16 @@
- hosts: ankeborg
become: true
pre_tasks:
- name: Update cache on Debian/Ubuntu
apt:
update_cache: yes
when: ansible_os_family == 'Debian'
- name: Update cache on RedHat/CentOS/Fedora
dnf:
update_cache: yes
when: ansible_os_family == 'RedHat'
roles:
- base