summaryrefslogtreecommitdiffstats
path: root/roles/os_update_latest/tasks/main.yml
diff options
context:
space:
mode:
Diffstat (limited to 'roles/os_update_latest/tasks/main.yml')
-rw-r--r--roles/os_update_latest/tasks/main.yml7
1 files changed, 6 insertions, 1 deletions
diff --git a/roles/os_update_latest/tasks/main.yml b/roles/os_update_latest/tasks/main.yml
index 2532059c0..3c3e80979 100644
--- a/roles/os_update_latest/tasks/main.yml
+++ b/roles/os_update_latest/tasks/main.yml
@@ -1,3 +1,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" \ No newline at end of file
+ action: "{{ ansible_pkg_mgr }} name=* state=latest"
+ when: not is_atomic \ No newline at end of file