From 2aa105e6cc8255e07867ed2efb025814d952c1d2 Mon Sep 17 00:00:00 2001 From: Ahmed Abdelhalim Date: Fri, 12 Sep 2025 21:31:20 +0200 Subject: Split the playbooks into bootstrap and configure This is to allow the ansible-distro-install to safely call the bootstrap playbook without getting validation errors about the other configure roles (especially if they are not configured yet, or if running on CI) --- bootstrap.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 bootstrap.yml (limited to 'bootstrap.yml') diff --git a/bootstrap.yml b/bootstrap.yml new file mode 100644 index 00000000..184906e8 --- /dev/null +++ b/bootstrap.yml @@ -0,0 +1,15 @@ +--- +- name: "Dev machines bootstrap" + gather_facts: true + tags: ["required_for_boot"] + hosts: + - archlinux.local + - ubuntu.local + - rpi5.local + roles: + - role: "package_cache" + - role: "hostname" + - role: "network" + - role: "user" + - role: "ssh" + - role: "password_policy" -- cgit v1.2.3