From 7fdf0e95e39a2b11c4bfc740c2312d33d4857176 Mon Sep 17 00:00:00 2001 From: Jose Date: Thu, 6 Nov 2025 18:06:57 +0100 Subject: [PATCH] =?UTF-8?q?docs=20=F0=9F=93=9D:=20Update=20verify.yml=20do?= =?UTF-8?q?cumentation=20for=20reverse=20DNS=20zone=20creation?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Updated the 'name' field in the 'tasks/verify.yml' file to include quotes around the variable {{ addc_reverse_zone_name }} for proper formatting. This change ensures consistent and readable documentation. --- tasks/verify.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/verify.yml b/tasks/verify.yml index 2ed259c..4651346 100644 --- a/tasks/verify.yml +++ b/tasks/verify.yml @@ -5,7 +5,7 @@ state: started enabled: true -- name: "Create the reverse DNS zone {{ addc_reverse_zone_name }}" +- name: 'Create the reverse DNS zone {{ addc_reverse_zone_name }}' community.general.expect: # Note: The 'expect' module is in the 'community.general' collection command: "samba-tool dns zonecreate {{ addc_ansible_host }} {{ addc_reverse_zone_name }} -U Administrator"