Renames roles

This commit is contained in:
2025-11-18 14:35:38 +01:00
parent ff82d63bd0
commit 581e3b2a9f
63 changed files with 1165 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
---
# Bring stack down
- hosts: loadbalancer
become: true
tasks:
- service: name=nginx state=stopped
- wait_for: port=80 state=drained
- hosts: webserver
become: true
tasks:
- service: name=apache2 state=stopped
- wait_for: port=80 state=stopped
# Restart mysql
- hosts: database
become: true
tasks:
- service: name=mysql state=restarted
- wait_for: port=3306 state=started
# Bring stack up
- hosts: webserver
become: true
tasks:
- service: name=apache2 state=started
- wait_for: port=80
- hosts: loadbalancer
become: true
tasks:
- service: name=nginx state=started
- wait_for: port=80