29 lines
519 B
YAML
29 lines
519 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 - commented problem with the VMs
|
|
- 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
|