Fix conditional and debug msg

This commit is contained in:
Jeffrey Serio 2025-02-26 21:35:14 -06:00
parent c50ea25396
commit ba7fef8852

View File

@ -39,13 +39,9 @@
- name: Upgrade the jails
ansible.builtin.command: "freebsd-update install -j {{ item }}"
register: upgraded_jails
changed_when: upgraded_jails.item.rc == 0
with_items: "{{ jails }}"
- name: Reboot of jail may be necessary
ansible.builtin.debug:
msg: "A system reboot may be necessary for this jail."
when:
- upgraded_jails.item.rc == 0
msg: "A reboot of {{ item }} jail may be necessary."
with_items: "{{ jails }}"