Initial commit
This commit is contained in:
commit
d6bd3862eb
19 changed files with 357 additions and 0 deletions
20
roles/apt/tasks/main.yml
Normal file
20
roles/apt/tasks/main.yml
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue