Initial commit

This commit is contained in:
Alex 2020-05-16 20:27:05 +02:00
commit 7702ebaf83
Signed by: caskd
GPG Key ID: F92BA85F61F4C173
1 changed files with 10 additions and 0 deletions

10
tasks/main.yml Normal file
View File

@ -0,0 +1,10 @@
- name: Install packages
loop: "{{ apt_packages }}"
apt:
install_recommends: no
name: "{{ item.package }}"
state: "{{ item.state }}"
cache_valid_time: 3600
tags:
- setup
- packages