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
Raw Normal View History

2018-12-15 03:06:26 +00:00
---
2023-07-10 17:25:47 +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