initial commit

This commit is contained in:
2022-11-04 17:02:32 +01:00
commit 2bf26a8285
26 changed files with 438 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
---
- name: "Check Distribution"
ansible.builtin.assert:
that:
- "ansible_distribution == 'Debian' or ansible_distribution == 'Ubuntu'"
- "ansible_architecture == 'x86_64'"
- name: "Install packages"
ansible.builtin.apt:
name:
- "rsync"
update_cache: "yes"