|
|
|
|
43
|
action: command dpkg-reconfigure -f noninteractive tzdata
|
43
|
action: command dpkg-reconfigure -f noninteractive tzdata
|
44
|
when: ansible_distribution == 'Debian' or ansible_distribution == 'Ubuntu'
|
44
|
when: ansible_distribution == 'Debian' or ansible_distribution == 'Ubuntu'
|
45
|
|
45
|
|
46
|
-- name: Install unattended upgrades (Debian/Ubuntu only)
|
|
|
47
|
- apt: pkg=unattended-upgrades state=installed
|
|
|
48
|
- when: ansible_distribution == 'Debian' or ansible_distribution == 'Ubuntu'
|
|
|
49
|
-
|
|
|
50
|
- name: Apticron email configuration
|
46
|
- name: Apticron email configuration
|
51
|
template: src=apticron.conf.j2 dest=/etc/apticron/apticron.conf
|
47
|
template: src=apticron.conf.j2 dest=/etc/apticron/apticron.conf
|
52
|
|
48
|
|