ansible-infra/roles/common/tasks/repos.yml

12 lines
281 B
YAML
Raw Normal View History

2020-04-13 14:46:45 +02:00
---
# Configure APT repositories and automatic upgrades
- name: Safely upgrade the server
apt:
upgrade: safe
update_cache: yes
cache_valid_time: "3600"
- name: Install unattend-upgrades for automatic upgrades
apt:
name: unattended-upgrades
state: present