feat: try removing the never tag

This commit is contained in:
Simon Cornet 2025-10-23 10:21:14 +02:00
commit b87cc03f2d
2 changed files with 2 additions and 9 deletions

View file

@ -2,14 +2,10 @@
# install updates # install updates
- name: "install updates" - name: "install updates"
tags: tags: "update"
- "update"
- "never"
ansible.builtin.include_tasks: "update.yaml" ansible.builtin.include_tasks: "update.yaml"
# initiate reboot # initiate reboot
- name: "initiate rboot" - name: "initiate rboot"
tags: tags: "reboot"
- "reboot"
- "never"
ansible.builtin.include_tasks: "reboot.yaml" ansible.builtin.include_tasks: "reboot.yaml"

View file

@ -3,7 +3,6 @@
# install updates - debian # install updates - debian
- name: "install updates - debian" - name: "install updates - debian"
when: 'ansible_os_family == "Debian"' when: 'ansible_os_family == "Debian"'
tags: "update"
block: block:
# install updates # install updates
@ -22,7 +21,6 @@
# install updates - rhel # install updates - rhel
- name: "install updates - rhel" - name: "install updates - rhel"
when: 'ansible_os_family == "RedHat"' when: 'ansible_os_family == "RedHat"'
tags: "update"
block: block:
# install updates # install updates
@ -47,7 +45,6 @@
# install updates - suse # install updates - suse
- name: "install updates" - name: "install updates"
when: 'ansible_os_family == "Suse"' when: 'ansible_os_family == "Suse"'
tags: "update"
block: block:
# install updates # install updates