mirror of
https://github.com/ChristianLempa/boilerplates.git
synced 2025-02-25 23:10:46 +01:00
15 lines
320 B
YAML
15 lines
320 B
YAML
|
---
|
||
|
- name: Update and upgrade apt packages
|
||
|
hosts: all
|
||
|
|
||
|
tasks:
|
||
|
- name: Update packages with apt
|
||
|
when: ansible_pkg_mgr == 'apt'
|
||
|
ansible.builtin.apt:
|
||
|
update_cache: true
|
||
|
|
||
|
- name: Upgrade packages with apt
|
||
|
when: ansible_pkg_mgr == 'apt'
|
||
|
ansible.builtin.apt:
|
||
|
upgrade: dist
|