blse2-public/common-debian/tasks/apt-bootstrap.yml

18 lines
288 B
YAML
Raw Normal View History

2023-05-05 15:47:27 -04:00
---
- 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