From 63bb58a09026c889bb8736597c84dfb5f9b80b7a Mon Sep 17 00:00:00 2001 From: Simon Cornet Date: Fri, 3 Oct 2025 11:30:22 +0200 Subject: [PATCH] feat: use new ansible layout --- playbook.yaml | 8 ++++++++ roles/requirements.yml | 6 ++++++ 2 files changed, 14 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..7fb60be --- /dev/null +++ b/playbook.yaml @@ -0,0 +1,8 @@ +--- + +# execute this role +- name: "install and configure a Keepalive Daemon" + hosts: "all" + become: true + roles: + - role: "keepalived" diff --git a/roles/requirements.yml b/roles/requirements.yml new file mode 100644 index 0000000..cfc4bfc --- /dev/null +++ b/roles/requirements.yml @@ -0,0 +1,6 @@ +--- + +roles: + - name: "keepalived" + src: "https://gitlab.simoncor.net/ansible/ans-keepalived.git" + scm: "git"