Try to fix access to var item result
This commit is contained in:
parent
b8c55055df
commit
c50ea25396
@ -22,15 +22,10 @@
|
|||||||
- name: Run freebsd-update fetch
|
- name: Run freebsd-update fetch
|
||||||
ansible.builtin.command: freebsd-update fetch
|
ansible.builtin.command: freebsd-update fetch
|
||||||
|
|
||||||
- name: Check if updates are ready
|
|
||||||
ansible.builtin.command: freebsd-update updatesready
|
|
||||||
register: updatesready
|
|
||||||
|
|
||||||
- name: Upgrade the system
|
- name: Upgrade the system
|
||||||
ansible.builtin.command: freebsd-update install
|
ansible.builtin.command: freebsd-update install
|
||||||
register: upgraded
|
register: upgraded
|
||||||
when:
|
changed_when: upgraded.rc == 0
|
||||||
- updatesready.rc == 0
|
|
||||||
|
|
||||||
- name: Reboot may be necessary
|
- name: Reboot may be necessary
|
||||||
ansible.builtin.debug:
|
ansible.builtin.debug:
|
||||||
@ -42,20 +37,15 @@
|
|||||||
ansible.builtin.command: "freebsd-update fetch -j {{ item }}"
|
ansible.builtin.command: "freebsd-update fetch -j {{ item }}"
|
||||||
with_items: "{{ jails }}"
|
with_items: "{{ jails }}"
|
||||||
|
|
||||||
- name: Check if updates are ready in jails
|
|
||||||
ansible.builtin.command: "freebsd-update updatesready -j {{ item }}"
|
|
||||||
register: updatesready_jails
|
|
||||||
with_items: "{{ jails }}"
|
|
||||||
|
|
||||||
- name: Upgrade the jails
|
- name: Upgrade the jails
|
||||||
ansible.builtin.command: "freebsd-update install -j {{ item }}"
|
ansible.builtin.command: "freebsd-update install -j {{ item }}"
|
||||||
register: upgraded_jails
|
register: upgraded_jails
|
||||||
|
changed_when: upgraded_jails.item.rc == 0
|
||||||
with_items: "{{ jails }}"
|
with_items: "{{ jails }}"
|
||||||
when:
|
|
||||||
- updatesready_jails.rc == 0
|
|
||||||
|
|
||||||
- name: Reboot of jail may be necessary
|
- name: Reboot of jail may be necessary
|
||||||
ansible.builtin.debug:
|
ansible.builtin.debug:
|
||||||
msg: "A system reboot may be necessary for this jail."
|
msg: "A system reboot may be necessary for this jail."
|
||||||
when:
|
when:
|
||||||
- upgraded_jails.rc == 0
|
- upgraded_jails.item.rc == 0
|
||||||
|
with_items: "{{ jails }}"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user