ansible/site.yml
Salt 026cddb787 Run playbooks for gameservers last among remote boxes
Just reorganizing. Playbooks should configure the stack from bottom -> top and from highest -> lowest priority
2020-12-24 09:54:53 -06:00

18 lines
432 B
YAML
Executable File

#!/usr/bin/env ansible-playbook
# vim:ft=ansible:
---
# Preambulatory system configuration
- hosts: all
roles:
- role: common
become: yes
tags: [ common ]
- role: ansible-pull
become: yes
tags: [ ansible, common ]
# Import specific playbooks
- import_playbook: playbooks/db.yml
- import_playbook: playbooks/web.yml
- import_playbook: playbooks/game.yml
- import_playbook: playbooks/desktop.yml