Add playbooks/update-yum-dima.yaml

This commit is contained in:
Sándor 2024-09-19 19:40:58 +02:00
parent baceb10b82
commit b7987c5092

View File

@ -0,0 +1,16 @@
---
- hosts: all
become: true
tasks:
- name: install updates except sql
yum:
name: '*'
state: latest
update_cache: yes
exclude:
- mysql-server
- mysql
- mariadb-server
- mariadb
when: ansible_os_family == "RedHat"