Skip to content
Snippets Groups Projects
Commit 1e27b109 authored by ale's avatar ale
Browse files

Stagger package upgrades across the available hosts

parent 0b78bee4
No related branches found
No related tags found
No related merge requests found
---
- name: Upgrade existing packages
apt:
update_cache: true
upgrade: true
- name: Set hostname
copy:
dest: /etc/hostname
......
---
# First update packages on all hosts, staggering execution so as to
# not restart all radiod nodes at once on package upgrades.
- hosts: all
tasks:
- name: Upgrade packages
apt:
update_cache: true
upgrade: true
serial:
- 1
- 1
- "100%"
- hosts: all
roles:
- base
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment