Skip to content

Commit 7a5869a

Browse files
author
Scott Davidson
committed
Fix lints
1 parent 0ed105f commit 7a5869a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

roles/os_networks/tasks/networks.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,13 +80,13 @@
8080

8181
# Workaround bug https://bugs.launchpad.net/ansible-collections-openstack/+bug/2049658
8282
# by looking up external network information using networks_info and then explicitly
83-
# passing the network ID into the openstack.cloud.router. Remove this workaround and
83+
# passing the network ID into the openstack.cloud.router. Remove this workaround and
8484
# uncomment code above when bug is fixed.
8585

8686
- name: Ensure router is registered with neutron
8787
# Can't loop over blocks in Ansible so have to
8888
# include separate tasks file instead :(
89-
include_tasks: router_workaround.yml
89+
ansible.builtin.include_tasks: router_workaround.yml
9090
with_items: "{{ os_networks_routers }}"
9191
when: item.state | default('present') == 'present'
9292

roles/os_networks/tasks/router_workaround.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# passing the network ID into the openstack.cloud.router's network field.
44

55
# NOTE: When the item.network parameter is an ID then we are effectively querying a
6-
# network by ID just to extract it's ID... but since the 'name' field of
6+
# network by ID just to extract it's ID... but since the 'name' field of
77
# openstack.cloud.networks_info makes no distinction between names and IDs we can't
88
# really avoid this.
99

0 commit comments

Comments
 (0)