christianlempa-boilerplates/ansible/update/upd-apt.yaml

26 lines
564 B
YAML

---
- name: Update and upgrade apt packages
hosts: all
tasks:
- name: Update packages with apt
when: ansible_pkg_mgr == 'apt'
apt:
update_cache: yes
- name: Update packages with yum
when: ansible_pkg_mgr == 'yum'
yum:
name: '*'
state: latest
- name: Upgrade packages with apt
when: ansible_pkg_mgr == 'apt'
apt:
upgrade: dist
- name: Upgrade packages with yum
when: ansible_pkg_mgr == 'yum'
yum:
name: '*'
state: latest
exclude: kernel*