feat: remove tags

This commit is contained in:
Simon Cornet 2025-10-02 17:18:16 +02:00
commit 0ab830a2df

View file

@ -3,10 +3,6 @@
# load variables and collect version information # load variables and collect version information
- name: "include vars and collect versions" - name: "include vars and collect versions"
when: "zabbix_agent_enable" when: "zabbix_agent_enable"
tags:
- "never"
- "zabbix_agent_install"
- "zabbix_agent_config"
block: block:
# collect zabbix-agent2 version information # collect zabbix-agent2 version information
@ -23,15 +19,8 @@
- name: "zabbix-agent install" - name: "zabbix-agent install"
ansible.builtin.import_tasks: "install.yaml" ansible.builtin.import_tasks: "install.yaml"
when: "zabbix_agent_enable" when: "zabbix_agent_enable"
tags:
- "never"
- "zabbix_agent_install"
# zabbix-agent config # zabbix-agent config
- name: "zabbix-agent config" - name: "zabbix-agent config"
ansible.builtin.import_tasks: "config.yaml" ansible.builtin.import_tasks: "config.yaml"
when: "zabbix_agent_enable" when: "zabbix_agent_enable"
tags:
- "never"
- "zabbix_agent_config"