2
0
Files
Ansible/Update/upd-apt.yaml
2024-06-06 18:04:59 +02:00

34 lines
838 B
YAML

---
- name: Update and upgrade apt packages
hosts: all
become: true
tasks:
- name: Update packages with apt
when: ansible_pkg_mgr == 'apt'
become: true
become_method: sudo
ansible.builtin.apt:
update_cache: true
- name: Upgrade packages with apt
when: ansible_pkg_mgr == 'apt'
become: true
command: sudo apt-get upgrade -y
- name: Update packages with yum
when: ansible_pkg_mgr == 'yum'
become: true
become_method: sudo
ansible.builtin.yum:
name: '*'
state: latest # noqa: package-latest
- name: Upgrade packages with yum
when: ansible_pkg_mgr == 'yum'
become: true
become_method: sudo
ansible.builtin.yum:
name: '*'
state: latest # noqa: package-latest
exclude: kernel*