From f68a932b8270a3c6b0c839c86490756bed6a943f Mon Sep 17 00:00:00 2001 From: Ahmed Abdelhalim Date: Wed, 4 Mar 2026 15:39:58 +0100 Subject: Remove small bootstrap playbook and merge it in site.yml --- site.yml | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) (limited to 'site.yml') diff --git a/site.yml b/site.yml index f2140ce6..34c96e5b 100644 --- a/site.yml +++ b/site.yml @@ -1,6 +1,22 @@ --- - name: "Bootstrap" - ansible.builtin.import_playbook: "bootstrap.yml" + gather_facts: true + tags: ["required_for_boot"] + hosts: all + roles: + - role: "hostname" + - role: "network" + - role: "user" + - role: "ssh" + - role: "password_policy" + pre_tasks: + - name: "Update package cache" + become: true + ansible.builtin.package: + update_cache: true + async: 60 + poll: 5 + failed_when: false - name: "Configure" ansible.builtin.import_playbook: "configure.yml" -- cgit v1.2.3