Name includes (useful for ansible 2.0)
This commit is contained in:
parent
ce1d8fcac3
commit
ede470acf9
@ -1,8 +1,10 @@
|
|||||||
---
|
---
|
||||||
# This playbook contains common plays that will be run on all nodes.
|
# This playbook contains common plays that will be run on all nodes.
|
||||||
|
|
||||||
- include: Debian.yml
|
- name: Debian
|
||||||
|
include: Debian.yml
|
||||||
when: ansible_os_family == 'Debian'
|
when: ansible_os_family == 'Debian'
|
||||||
|
|
||||||
- include: FreeBSD.yml
|
- name: FreeBSD
|
||||||
|
include: FreeBSD.yml
|
||||||
when: ansible_distribution == 'FreeBSD'
|
when: ansible_distribution == 'FreeBSD'
|
||||||
|
@ -1,7 +1,9 @@
|
|||||||
---
|
---
|
||||||
|
|
||||||
- include: Debian.yml
|
- name: Debian
|
||||||
|
include: Debian.yml
|
||||||
when: ansible_os_family == 'Debian'
|
when: ansible_os_family == 'Debian'
|
||||||
|
|
||||||
- include: FreeBSD.yml
|
- name: FreeBSD
|
||||||
|
include: FreeBSD.yml
|
||||||
when: ansible_distribution == 'FreeBSD'
|
when: ansible_distribution == 'FreeBSD'
|
||||||
|
@ -1,8 +1,10 @@
|
|||||||
---
|
---
|
||||||
# This playbook contains common plays that will be run on all nodes.
|
# This playbook contains common plays that will be run on all nodes.
|
||||||
|
|
||||||
- include: Debian.yml
|
- name: Debian
|
||||||
|
include: Debian.yml
|
||||||
when: ansible_os_family == 'Debian'
|
when: ansible_os_family == 'Debian'
|
||||||
|
|
||||||
- include: FreeBSD.yml
|
- name: FreeBSD
|
||||||
|
include: FreeBSD.yml
|
||||||
when: ansible_distribution == 'FreeBSD'
|
when: ansible_distribution == 'FreeBSD'
|
||||||
|
Loading…
Reference in New Issue
Block a user