From e7350f626368832d7167ea8dcb7fd2c58d1e577e Mon Sep 17 00:00:00 2001 From: Simon Cornet Date: Fri, 3 Oct 2025 11:32:42 +0200 Subject: [PATCH] feat: use new ansible layout --- playbook.yaml | 9 +++++++++ roles/requirements.yml | 9 +++++++++ 2 files changed, 18 insertions(+) create mode 100644 playbook.yaml create mode 100644 roles/requirements.yml diff --git a/playbook.yaml b/playbook.yaml new file mode 100644 index 0000000..505756a --- /dev/null +++ b/playbook.yaml @@ -0,0 +1,9 @@ +--- + +# execute this role +- name: "install and configure the Zabbix Proxy" + hosts: "all" + become: true + roles: + - role: "zabbix_prereq" + - role: "zabbix_proxy" diff --git a/roles/requirements.yml b/roles/requirements.yml new file mode 100644 index 0000000..cb731ae --- /dev/null +++ b/roles/requirements.yml @@ -0,0 +1,9 @@ +--- + +roles: + - name: "zabbix_prereq" + src: "https://gitlab.simoncor.net/ansible/ans-zabbix-prereq.git" + scm: "git" + - name: "zabbix_proxy" + src: "https://gitlab.simoncor.net/ansible/ans-zabbix-proxy.git" + scm: "git"