123456789101112131415161718 |
- ---
- - hosts: debian
- become_user: root
- become: yes
- tasks:
- - name: update the system
- apt:
- upgrade: dist
- update_cache: yes
- - name: Remove useless packages from the cache
- apt:
- autoclean: yes
- - name: Remove dependencies that are no longer required
- apt:
- autoremove: yes
-
|