Initial commit

This commit is contained in:
2025-09-03 19:19:15 +02:00
commit 0bafe17c05
11 changed files with 442 additions and 0 deletions

12
main.yml Normal file
View File

@@ -0,0 +1,12 @@
---
- hosts: localhost
vars_files:
- debian.config.yml
- macos.config.yml
roles:
- role: roles/macos
tags: [macos]
when: ansible_os_family == 'Darwin'
- role: roles/debian
tags: [debian]
when: ansible_os_family == 'Debian'