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