29 lines
486 B
YAML
29 lines
486 B
YAML
---
|
|
# Bring stack down
|
|
- hosts: loadbalancer
|
|
become: true
|
|
tasks:
|
|
- service: name=nginx state=stopped
|
|
|
|
- hosts: webserver
|
|
become: true
|
|
tasks:
|
|
- service: name=apache2 state=stopped
|
|
|
|
# Restart mysql
|
|
- hosts: database
|
|
become: true
|
|
tasks:
|
|
- service: name=mysql state=restarted
|
|
|
|
# Bring stack up
|
|
- hosts: webserver
|
|
become: true
|
|
tasks:
|
|
- service: name=apache2 state=started
|
|
|
|
- hosts: loadbalancer
|
|
become: true
|
|
tasks:
|
|
- service: name=nginx state=started
|