From dc6fb16d3e9e0136c55f279d4ad1e5d2cbf9ab0a Mon Sep 17 00:00:00 2001 From: Jeffrey Serio Date: Wed, 26 Feb 2025 21:46:49 -0600 Subject: [PATCH] I don't need to Ansible this --- freebsd-update.yml | 27 --------------------------- 1 file changed, 27 deletions(-) diff --git a/freebsd-update.yml b/freebsd-update.yml index e3c283c..9aea1ac 100644 --- a/freebsd-update.yml +++ b/freebsd-update.yml @@ -18,30 +18,3 @@ state: latest jail: "{{ item }}" with_items: "{{ jails }}" - - - name: Run freebsd-update fetch - ansible.builtin.command: freebsd-update fetch - - - name: Upgrade the system - ansible.builtin.command: freebsd-update install - register: upgraded - changed_when: upgraded.rc == 0 - - - name: Reboot may be necessary - ansible.builtin.debug: - msg: "A system reboot may be necessary." - when: - - upgraded.rc == 0 - - - name: Run freebsd-update fetch on jails - ansible.builtin.command: "freebsd-update fetch -j {{ item }}" - with_items: "{{ jails }}" - - - name: Upgrade the jails - ansible.builtin.command: "freebsd-update install -j {{ item }}" - with_items: "{{ jails }}" - - - name: Reboot of jail may be necessary - ansible.builtin.debug: - msg: "A reboot of {{ item }} jail may be necessary." - with_items: "{{ jails }}"