18 lines
300 B
YAML
18 lines
300 B
YAML
---
|
|
- name: Play for production server
|
|
hosts: production
|
|
become: true
|
|
vars_files:
|
|
- vars/production.yml
|
|
roles:
|
|
- users
|
|
- basic_packages
|
|
|
|
- name: Play for testing server
|
|
hosts: testing
|
|
become: true
|
|
vars_files:
|
|
- vars/testing.yml
|
|
roles:
|
|
- users
|
|
- basic_packages
|