forked from infra/ansible
9 lines
200 B
YAML
9 lines
200 B
YAML
|
---
|
||
|
# This playbook contains common plays that will be run on all nodes.
|
||
|
|
||
|
- include: Debian.yml
|
||
|
when: ansible_os_family == 'Debian'
|
||
|
|
||
|
- include: FreeBSD.yml
|
||
|
when: ansible_distribution == 'FreeBSD'
|