main.yml 268 B

12345678
  1. ---
  2. - fail:
  3. msg: "Update is not yet supported by this playbook on atomic hosts"
  4. when: openshift.common.is_containerized | bool
  5. - name: Update all packages
  6. action: "{{ ansible_pkg_mgr }} name=* state=latest"
  7. when: not openshift.common.is_containerized | bool