From 7dc244b923b66a65ce95e1c1dd03da8b834d7b41 Mon Sep 17 00:00:00 2001 From: Andre Rodier Date: Fri, 5 Jan 2024 10:21:01 +0000 Subject: [PATCH] fixed postfix dns records creation --- roles/postfix/tasks/install/dns.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/roles/postfix/tasks/install/dns.yml b/roles/postfix/tasks/install/dns.yml index 124b3e824..e40edefee 100644 --- a/roles/postfix/tasks/install/dns.yml +++ b/roles/postfix/tasks/install/dns.yml @@ -5,6 +5,7 @@ dns_records: '{{ dns_records_main | selectattr("create", "equalto", true) | list }}' ansible.builtin.include_role: name: dns-record + tasks_from: install/main.yml tags: dns - name: Create the DNS entries for the backup @@ -13,4 +14,5 @@ dns_records: '{{ dns_records_backup | selectattr("create", "equalto", true) | list }}' ansible.builtin.include_role: name: dns-record + tasks_from: install/main.yml tags: dns