2
0
Files
Ansible/Update/upd-apt.yaml

32 lines
770 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
ansible.builtin.apt:
update_cache: true
- name: Upgrade packages with apt
when: ansible_pkg_mgr == 'apt'
become: true
ansible.builtin.apt:
upgrade: dist
- name: Update packages with yum
when: ansible_pkg_mgr == 'yum'
become: true
ansible.builtin.yum:
name: '*'
state: latest # noqa: package-latest
- name: Upgrade packages with yum
when: ansible_pkg_mgr == 'yum'
become: true
ansible.builtin.yum:
name: '*'
state: latest # noqa: package-latest
exclude: kernel*