mirror of
https://github.com/geerlingguy/ansible-role-apache
synced 2025-01-10 11:50:18 +01:00
9 lines
279 B
YAML
9 lines
279 B
YAML
---
|
|
# This Playbook does a rolling update of the code for all webservers serially (one at a time).
|
|
# Change the value of serial: to adjust the number of server to be updated.
|
|
|
|
- hosts: webservers
|
|
user: root
|
|
serial: 1
|
|
tasks:
|
|
- include: roles/web/tasks/rolling_update.yml
|