Initial commit

This commit is contained in:
Alex 2020-05-25 21:31:21 +02:00
commit e23de968eb
Signed by: caskd
GPG Key ID: F92BA85F61F4C173
1 changed files with 14 additions and 0 deletions

14
tasks/main.yml Normal file
View File

@ -0,0 +1,14 @@
- name: Upgrade all packages to the latest version
apt:
name: "*"
state: latest
tags:
- update
- packages
- name: Clean up unused dependencies and packages
apt:
autoremove: yes
autoclean: yes
tags:
- update
- packages