ansible/site.yml

26 lines
368 B
YAML
Raw Permalink Normal View History

2018-12-15 03:06:26 +00:00
---
2018-12-15 03:06:45 +00:00
# This is the overall site playbook.
2018-12-15 03:06:26 +00:00
- name: Baseline Configuration
hosts: all
become: yes
become_method: sudo
2018-12-15 03:06:26 +00:00
roles:
- common
2018-12-21 15:48:24 +00:00
- name: Shell server cofiguration
hosts: shell
become: yes
become_method: sudo
roles:
- shell
- name: Web server configuration
hosts: webserver
become: yes
become_method: sudo
roles:
- webserver