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:
James E. Blair 2022-05-23 14:08:23 -07:00
parent 09d493916a
commit a1e6229171

View File

@ -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
- 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
- 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
- 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: