diff --git a/playbooks/update-yum.yaml b/playbooks/update-yum.yaml new file mode 100644 index 0000000..5196df6 --- /dev/null +++ b/playbooks/update-yum.yaml @@ -0,0 +1,8 @@ +--- +- hosts: all + + become: true + tasks: + - name: install updates + yum: name=* state=latest update_cache=yes + when: ansible_os_family == "RedHat" \ No newline at end of file