Correct indentation in environment role

ansible-lint is complaining about wrong indentation[1],
correcting indentation with this patch.

[1] https://cf3e172ed2d7be9bae50-58eae736b511220091705f1aa1981af1.ssl.cf2.rackcdn.com/865238/6/check/openstack-tox-linters/01c1fa8/job-output.txt

Closes-Bug: #2002526
Change-Id: Id9976fe61e1601a50ce31ff72cbbdb7aa4c62172
This commit is contained in:
Sandeep Yadav 2023-01-11 18:26:24 +05:30
parent 04afb23141
commit 05e2978334
1 changed files with 12 additions and 12 deletions

View File

@ -2,19 +2,19 @@
- when: networks|selectattr('virtualport_type', 'defined')|map(attribute='name')|list|length > 0
block:
# Install OVS dependencies
- name: Install OVS dependencies
include_role:
name: 'parts/ovs'
# Install OVS dependencies
- name: Install OVS dependencies
include_role:
name: 'parts/ovs'
# Create any OVS Bridges that have been defined
- name: Create OVS Bridges
openvswitch_bridge:
bridge: "{{ item.bridge }}"
state: present
when: item.virtualport_type is defined and item.virtualport_type == "openvswitch"
with_items: "{{ networks }}"
become: true
# Create any OVS Bridges that have been defined
- name: Create OVS Bridges
openvswitch_bridge:
bridge: "{{ item.bridge }}"
state: present
when: item.virtualport_type is defined and item.virtualport_type == "openvswitch"
with_items: "{{ networks }}"
become: true
# Create the global, root-managed libvirt networks to which we will
# attach the undercoud and overcloud virtual machines.