This repository has been archived on 2024-01-01. You can view files and clone it, but cannot push or open issues or pull requests.
ansible/site.yml

26 lines
369 B
YAML

---
## This is the overall site playbook.
- name: Baseline Configuration
hosts: all
become: yes
become_method: sudo
roles:
- common
- 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