mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-07 05:42:50 +00:00
Fix bare variable references in docs (#5554)
This commit is contained in:
committed by
Matt Clay
parent
e45e25c257
commit
2ef59561ba
@@ -171,7 +171,7 @@ cl_bond:
|
||||
mstpctl_portnetwork: "{{ item.value.mstpctl_portnetwork|default('no') }}"
|
||||
mstpctl_portadminedge: "{{ item.value.mstpctl_portadminedge|default('no') }}"
|
||||
mstpctl_bpduguard: "{{ item.value.mstpctl_bpduguard|default('no') }}"
|
||||
with_dict: cl_bonds
|
||||
with_dict: "{{ cl_bonds }}"
|
||||
notify: reload networking
|
||||
|
||||
# In vars file
|
||||
|
||||
@@ -124,7 +124,7 @@ cl_bridge:
|
||||
virtual_ip: "{{ item.value.virtual_ip|default(omit) }}"
|
||||
virtual_mac: "{{ item.value.virtual_mac|default(omit) }}"
|
||||
mstpctl_treeprio: "{{ item.value.mstpctl_treeprio|default(omit) }}"
|
||||
with_dict: cl_bridges
|
||||
with_dict: "{{ cl_bridges }}"
|
||||
notify: reload networking
|
||||
|
||||
# In vars file
|
||||
|
||||
@@ -151,7 +151,7 @@ cl_interface:
|
||||
mstpctl_portnetwork: "{{ item.value.mstpctl_portnetwork|default('no') }}"
|
||||
mstpctl_portadminedge: "{{ item.value.mstpctl_portadminedge|default('no') }}"
|
||||
mstpctl_bpduguard: "{{ item.value.mstpctl_bpduguard|default('no') }}"
|
||||
with_dict: cl_interfaces
|
||||
with_dict: "{{ cl_interfaces }}"
|
||||
notify: reload networking
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user