forked from Netz39_Admin/netz39-infra-ansible
Setup unattended-upgrades
This commit is contained in:
parent
08166097ab
commit
f10e60941b
1 changed files with 15 additions and 0 deletions
15
main.yml
15
main.yml
|
@ -16,5 +16,20 @@
|
|||
cache_valid_time: 3600
|
||||
autoclean: true
|
||||
|
||||
- name: Ensure unattended-upgrades is installed and up to date
|
||||
apt:
|
||||
name: unattended-upgrades
|
||||
state: latest
|
||||
|
||||
- name: Setup unattended-upgrades
|
||||
include_role:
|
||||
name: ansible-role-unattended-upgrades
|
||||
vars:
|
||||
unattended_origins_patterns:
|
||||
- 'origin=Debian,archive=buster-security'
|
||||
- 'o=Debian,a=buster-updates'
|
||||
unattended_package_blacklist: [cowsay]
|
||||
unattended_mail: 'root'
|
||||
|
||||
- name: Setup httpd
|
||||
include_tasks: tasks/httpd.yml
|
||||
|
|
Loading…
Reference in a new issue