aboutsummaryrefslogblamecommitdiffstats
path: root/roles/update/tasks/main.yml
blob: 17196117db731bb78774c1a7e7110e0f6996508d (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16















                                         
---

- name: apply system update
  ansible.builtin.command: syspatch
  register: update_result_system_update
  failed_when:
    - update_result_system_update.rc > 0
    - update_result_system_update.rc != 2
  changed_when:
    - update_result_system_update.rc == 0
  when: ansible_distribution == "OpenBSD"

- name: apply package update
  ansible.builtin.package:
    name: "*"
    state: latest
remember that computers suck.