From 5958904fa3a71853871b1d7c7d50a2805dd3a434 Mon Sep 17 00:00:00 2001 From: "Dustin C. Hatch" Date: Sat, 29 Jun 2024 07:57:08 -0500 Subject: [PATCH] bootstrap: PB to bootstrap a new machine I've actually had this playbook for a _long_ time, just never bothered to commit it. It's useful for the very first time Ansible is run for a managed node to configure all the basic stuff. --- bootstrap.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 bootstrap.yml diff --git a/bootstrap.yml b/bootstrap.yml new file mode 100644 index 0000000..d61e691 --- /dev/null +++ b/bootstrap.yml @@ -0,0 +1,4 @@ +- import_playbook: facts.yml +- import_playbook: hostname.yml +- import_playbook: base.yml +- import_playbook: firewalld.yml