From 6994f1a14bed9665a12d921052400d750a393ae5 Mon Sep 17 00:00:00 2001 From: Simon Cornet Date: Fri, 24 Oct 2025 22:16:58 +0200 Subject: [PATCH] feat: create keepalived dir --- tasks/config.yaml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/tasks/config.yaml b/tasks/config.yaml index f54bc17..643d55d 100644 --- a/tasks/config.yaml +++ b/tasks/config.yaml @@ -1,5 +1,14 @@ --- +# create directory +- name: "create - directory" + ansible.builtin.file: + path: "/etc/keepalived" + state: "directory" + owner: "root" + group: "root" + mode: "0775" + # configure keepalived - name: "config - keepalived" ansible.builtin.template: