init
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
decentral1se
2022-05-30 13:17:10 +02:00
commit de635c0847
12 changed files with 166 additions and 0 deletions

15
tasks/main.yml Normal file
View File

@ -0,0 +1,15 @@
---
- name: Update the package cache
apt:
update_cache: true
cache_valid_time: 3600
- name: Update all packages
apt:
name: "*"
state: present
- name: Install basic packages
apt:
name: "{{ packages_list }}"
state: present