Fix the name on all "name" tasks, but not name variables to pass ansible linting

This commit is contained in:
2026-08-10 21:03:13 -05:00
parent 306397517d
commit fca5c83e4d
44 changed files with 342 additions and 342 deletions
+21 -21
View File
@@ -48,10 +48,10 @@
loop_control:
label: '{{ item.name }} will be {{ item.value }}'
notify:
- ensure_postfix.package_facts
- ensure_postfix.service_facts
- ensure_postfix.service_reload
- ensure_postfix.service_restart
- Ensure_Postfix.Package_Facts
- Ensure_Postfix.Service_Facts
- Ensure_Postfix.Service_Reload
- Ensure_Postfix.Service_Reload_Config
- name: Ensure Packages
when:
- ansible_facts["system"] == 'Linux'
@@ -65,10 +65,10 @@
loop_control:
label: '{{ item.name }} will be {{ item.state }}'
notify:
- ensure_postfix.package_facts
- ensure_postfix.service_facts
- ensure_postfix.service_reload
- ensure_postfix.service_restart
- Ensure_Postfix.Package_Facts
- Ensure_Postfix.Service_Facts
- Ensure_Postfix.Service_Reload
- Ensure_Postfix.Service_Reload_Config
- name: Ensure Seboolean
when:
- ansible_facts["system"] == 'Linux'
@@ -83,10 +83,10 @@
loop_control:
label: '{{ item.name }} will be {{ item.state }}'
notify:
- ensure_postfix.package_facts
- ensure_postfix.service_facts
- ensure_postfix.service_reload
- ensure_postfix.service_restart
- Ensure_Postfix.Package_Facts
- Ensure_Postfix.Service_Facts
- Ensure_Postfix.Service_Reload
- Ensure_Postfix.Service_Reload_Config
- name: Ensure Configurations
when:
- ansible_facts["system"] == 'Linux'
@@ -108,10 +108,10 @@
loop_control:
label: '{{ item.dest }} will be ensured'
notify:
- ensure_postfix.package_facts
- ensure_postfix.service_facts
- ensure_postfix.service_reload
- ensure_postfix.service_restart
- Ensure_Postfix.Package_Facts
- Ensure_Postfix.Service_Facts
- Ensure_Postfix.Service_Reload
- Ensure_Postfix.Service_Reload_Config
- name: Ensure Firewall
when:
- ansible_facts["system"] == 'Linux'
@@ -128,10 +128,10 @@
loop_control:
label: '{{ item.service }} will be {{ item.state }}'
notify:
- ensure_postfix.package_facts
- ensure_postfix.service_facts
- ensure_postfix.service_reload
- ensure_postfix.service_restart
- Ensure_Postfix.Package_Facts
- Ensure_Postfix.Service_Facts
- Ensure_Postfix.Service_Reload
- Ensure_Postfix.Service_Reload_Config
- name: Ensure Services
when:
- ansible_facts["system"] == 'Linux'
@@ -145,6 +145,6 @@
loop: '{{ ensure_postfix.service_list }}'
loop_control:
label: '{{ item.name }} will be {{ item.state }}'
notify: [ensure_postfix.package_facts, ensure_postfix.service_facts]
notify: [Ensure_Postfix.Package_Facts, Ensure_Postfix.Service_Facts]
- name: Flush Handlers
ansible.builtin.meta: flush_handlers