summaryrefslogtreecommitdiffstats
path: root/roles/os_update_latest/tasks/main.yml
blob: 3c3e809797cd3056dfda81d15563ab1159f73e21 (plain)
1
2
3
4
5
6
7
8
---
- fail:
    msg: "Update is not yet supported by this playbook on atomic hosts"
  when: is_atomic

- name: Update all packages
  action: "{{ ansible_pkg_mgr }} name=* state=latest"
  when: not is_atomic