I don't need to Ansible this

This commit is contained in:
Jeffrey Serio 2025-02-26 21:46:49 -06:00
parent ba7fef8852
commit dc6fb16d3e

View File

@ -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 }}"