I don't need to Ansible this
This commit is contained in:
parent
ba7fef8852
commit
dc6fb16d3e
@ -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 }}"
|
||||
|
Loading…
x
Reference in New Issue
Block a user