From 8093a955e3c6238cc14537a54c56277af6b89dc2 Mon Sep 17 00:00:00 2001 From: Matthew Fennell Date: Sun, 7 Jan 2024 11:39:27 +0000 Subject: Add initial playbook At present, the playbook simply ensures that all required packages are installed. --- playbook.yaml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 playbook.yaml (limited to 'playbook.yaml') diff --git a/playbook.yaml b/playbook.yaml new file mode 100644 index 0000000..85b5e50 --- /dev/null +++ b/playbook.yaml @@ -0,0 +1,18 @@ +# SPDX-FileCopyrightText: 2024 Matthew Fennell +# +# SPDX-License-Identifier: AGPL-3.0-only + +--- + +- name: Ensure XMPP server is set up + hosts: xmpp_server + tasks: + - name: Ensure required packages are installed + ansible.builtin.package: + name: + - certbot + - prosody + - prosody-modules + - python3-certbot-apache + - ufw + state: present -- cgit v1.2.3