1
0
Fork 0

Initial commit

This commit is contained in:
Andrew Tomaka 2022-12-21 22:56:39 -05:00
commit d6bd3862eb
Signed by: atomaka
GPG key ID: 61209BF70A5B18BE
19 changed files with 357 additions and 0 deletions

20
roles/apt/tasks/main.yml Normal file
View file

@ -0,0 +1,20 @@
---
- name: Install unattended-upgrades
apt:
name: unattended-upgrades
state: present
- name: Install repository tools
apt:
name:
- debian-keyring
- debian-archive-keyring
- apt-transport-https
- ca-certificates
- gnupg
state: present
- name: Ensure unattended-upgrades is runing
service:
name: unattended-upgrades
enabled: true