Remove "include:" usage from multi-node-bridge
This is deprecated, and include_tasks is sufficient and present in all supported versions. Change-Id: If88d9d6ce9fb40a9a8e42e7a32d473ffd51b780a
This commit is contained in:
parent
09d493916a
commit
a1e6229171
@ -1,24 +1,28 @@
|
||||
# Note (dmsimard)
|
||||
# We explicitely declare a PATH environment variable because '/sbin' is not in
|
||||
# PATH when using 'become: yes' on some distributions
|
||||
- include: common.yaml
|
||||
environment:
|
||||
PATH: "{{ ansible_env.PATH }}:/sbin:/usr/sbin"
|
||||
- include_tasks:
|
||||
file: common.yaml
|
||||
apply:
|
||||
environment:
|
||||
PATH: "{{ ansible_env.PATH }}:/sbin:/usr/sbin"
|
||||
when: >-
|
||||
inventory_hostname in groups['switch'] or
|
||||
inventory_hostname in groups['peers']
|
||||
|
||||
- include: switch.yaml
|
||||
environment:
|
||||
PATH: "{{ ansible_env.PATH }}:/sbin:/usr/sbin"
|
||||
- include_tasks:
|
||||
file: switch.yaml
|
||||
apply:
|
||||
environment:
|
||||
PATH: "{{ ansible_env.PATH }}:/sbin:/usr/sbin"
|
||||
when: inventory_hostname in groups['switch']
|
||||
static: no
|
||||
|
||||
- include: peer.yaml
|
||||
environment:
|
||||
PATH: "{{ ansible_env.PATH }}:/sbin:/usr/sbin"
|
||||
- include_tasks:
|
||||
file: peer.yaml
|
||||
apply:
|
||||
environment:
|
||||
PATH: "{{ ansible_env.PATH }}:/sbin:/usr/sbin"
|
||||
when: inventory_hostname in groups['peers']
|
||||
static: no
|
||||
|
||||
- name: Persist iptables rules
|
||||
include_role:
|
||||
|
Loading…
Reference in New Issue
Block a user