From c50ea2539662bd1d779a8503e7dbea58fed66063 Mon Sep 17 00:00:00 2001 From: Jeffrey Serio Date: Wed, 26 Feb 2025 20:43:18 -0600 Subject: [PATCH] Try to fix access to var item result --- freebsd-update.yml | 18 ++++-------------- 1 file changed, 4 insertions(+), 14 deletions(-) diff --git a/freebsd-update.yml b/freebsd-update.yml index 7b4c6aa..a3bf3f7 100644 --- a/freebsd-update.yml +++ b/freebsd-update.yml @@ -22,15 +22,10 @@ - name: Run 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 ansible.builtin.command: freebsd-update install register: upgraded - when: - - updatesready.rc == 0 + changed_when: upgraded.rc == 0 - name: Reboot may be necessary ansible.builtin.debug: @@ -42,20 +37,15 @@ ansible.builtin.command: "freebsd-update fetch -j {{ item }}" 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 ansible.builtin.command: "freebsd-update install -j {{ item }}" register: upgraded_jails + changed_when: upgraded_jails.item.rc == 0 with_items: "{{ jails }}" - when: - - updatesready_jails.rc == 0 - name: Reboot of jail may be necessary ansible.builtin.debug: msg: "A system reboot may be necessary for this jail." when: - - upgraded_jails.rc == 0 + - upgraded_jails.item.rc == 0 + with_items: "{{ jails }}"