From 4977b1aa78a27db44f19b60aa861c2c67bb04501 Mon Sep 17 00:00:00 2001 From: Simon Cornet Date: Sun, 5 Apr 2026 18:23:52 +0200 Subject: [PATCH] feat: include over import --- playbook.yaml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/playbook.yaml b/playbook.yaml index 9a3a01f..9bf8fae 100644 --- a/playbook.yaml +++ b/playbook.yaml @@ -15,10 +15,12 @@ changed_when: false failed_when: false - - name: "import role: common" - ansible.builtin.import_role: + # execute the role + - name: "execute role: common" + ansible.builtin.include_role: name: "common" - - name: "import role: zabbix_agent" - ansible.builtin.import_role: + # execute the role + - name: "execute role: zabbix_agent" + ansible.builtin.include_role: name: "zabbix_agent"