diff options
| -rw-r--r-- | site.yml | 10 |
1 files changed, 4 insertions, 6 deletions
@@ -5,10 +5,7 @@ # But it's quite nice to configure it for boot and therefore # enforce the required policies/configurations wanted for the first passwrod change tags: ["required_for_boot"] - hosts: - - archlinux.local - - ubuntu.local - - rpi5.local + hosts: all roles: - role: "hostname" - role: "network" @@ -21,12 +18,11 @@ ansible.builtin.package: update_cache: true -- name: "Distro configure common roles" +- name: "Dev machines configure" gather_facts: true hosts: - archlinux.local - ubuntu.local - - rpi5.local roles: - role: "locales" - role: "timezone" @@ -38,4 +34,6 @@ - rpi5.local become: true roles: + - role: "locales" + - role: "timezone" - role: "pihole" |
