system-config/playbooks/unattended_upgrades.yml
Ricardo Carrillo Cruz 99b28f7466 Rename attended_upgrades playbook to unattended_upgrades
It runs unattended upgrades, thus the filename should reflect
that.

Change-Id: I837f863e67b705d2ccea01ccfba2ce7850b229f0
2016-07-19 10:41:09 +02:00

7 lines
166 B
YAML

- hosts: all
gather_facts: true
tasks:
- name: run unattended upgrades
shell: apt-get update && unattended-upgrade
when: ansible_os_family == "Debian"