18 lines
288 B
YAML
18 lines
288 B
YAML
|
---
|
||
|
- name: clean out apt cache
|
||
|
file:
|
||
|
path: /var/cache/apt/archives
|
||
|
state: absent
|
||
|
|
||
|
- name: install pending updates and autoremove
|
||
|
apt:
|
||
|
update_cache: yes
|
||
|
autoremove: yes
|
||
|
upgrade: full
|
||
|
|
||
|
- name: install dbus if missing
|
||
|
apt:
|
||
|
name:
|
||
|
- dbus
|
||
|
state: latest
|