Refactor preflight task names for clarity and consistency

This commit is contained in:
2025-12-02 19:51:57 +01:00
parent e3c660d9e4
commit 2065aa314a

View File

@@ -1,12 +1,12 @@
--- ---
# preflight-checks.yml - Validate environment before running main tasks # preflight-checks.yml - Validate environment before running main tasks
- name: "Get Ansible python interpreter" - name: "[PREFLIGHT] Get Ansible python interpreter on ansible controller"
ansible.builtin.set_fact: ansible.builtin.set_fact:
controller_python: "{{ ansible_playbook_python }}" controller_python: "{{ ansible_playbook_python }}"
delegate_to: localhost delegate_to: localhost
- name: "Install netaddr in controller Python environment" - name: "[PREFLIGHT] Install netaddr in ansible controller Python environment"
ansible.builtin.pip: ansible.builtin.pip:
name: netaddr name: netaddr
state: present state: present