You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- ---
-
- - name: update apt cache
- apt:
- update_cache: true
- cache_valid_time: 3600
-
- - name: upgrade all packages
- apt:
- upgrade: dist
-
- - name: unattended-upgrades
- apt:
- name: unattended-upgrades
- when:
- - unattended_upgrades
- - not ansible_bender is defined
-
- - name: reboot after updates
- reboot:
- when: reboot_after_updates
|