From 7ddb91550f268cc49152f87a97f49c902735fcc1 Mon Sep 17 00:00:00 2001 From: Julian Schacher Date: Fri, 24 Nov 2023 13:08:17 +0100 Subject: [PATCH] Add maintenance playbook for running all roles to do system maintenance Currently it just includes the system_update role, but it will be exanded in the future, when new relevant roles get added. --- playbooks/maintenance.yaml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 playbooks/maintenance.yaml diff --git a/playbooks/maintenance.yaml b/playbooks/maintenance.yaml new file mode 100644 index 0000000..dd1027b --- /dev/null +++ b/playbooks/maintenance.yaml @@ -0,0 +1,5 @@ +--- +- name: Ensure the system is updated and potentially rebooted + hosts: all + roles: + - system_update