mirror of
https://github.com/ChristianLempa/boilerplates.git
synced 2024-11-22 08:13:18 +01:00
26 lines
564 B
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* |