From 2065aa314aa79aa7206a07f896ac9aaf922bc86a Mon Sep 17 00:00:00 2001 From: Jose Date: Tue, 2 Dec 2025 19:51:57 +0100 Subject: [PATCH] Refactor preflight task names for clarity and consistency --- tasks/preflight-checks.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tasks/preflight-checks.yml b/tasks/preflight-checks.yml index a266333..c874cd0 100644 --- a/tasks/preflight-checks.yml +++ b/tasks/preflight-checks.yml @@ -1,12 +1,12 @@ --- # 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: controller_python: "{{ ansible_playbook_python }}" delegate_to: localhost -- name: "Install netaddr in controller Python environment" +- name: "[PREFLIGHT] Install netaddr in ansible controller Python environment" ansible.builtin.pip: name: netaddr state: present