Skip to content

Commit

Permalink
Merge "Fix Dell OS6 and Dell OS9 switch configuration" into unmaintai…
Browse files Browse the repository at this point in the history
…ned/zed
  • Loading branch information
Zuul authored and openstack-gerrit committed May 30, 2024
2 parents cbb9a22 + bddb498 commit 73ceb77
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ansible/roles/dell-switch/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
local_action:
module: dellos6_config
provider: "{{ dell_switch_provider }}"
src: dellos6-config.j2
src: "{{ lookup('template', 'dellos6-config.j2') }}"
when: dell_switch_type == 'dellos6'

- name: Ensure DellOS9 switches are configured
local_action:
module: dellos9_config
provider: "{{ dell_switch_provider }}"
src: dellos9-config.j2
src: "{{ lookup('template', 'dellos9-config.j2') }}"
when: dell_switch_type == 'dellos9'

- name: Ensure DellOS10 switches are configured
Expand Down
6 changes: 6 additions & 0 deletions releasenotes/notes/bug-2061102-cbc4c65c14c09d55.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
fixes:
- |
Fixes an issue where Dell OS6 and Dell OS9 switch configuration was not
applied correctly. `LP#2061102
<https://bugs.launchpad.net/kayobe/+bug/2061102>`__.

0 comments on commit 73ceb77

Please sign in to comment.