Skip to content
Snippets Groups Projects
Commit 01782785 authored by Zuul's avatar Zuul Committed by Gerrit Code Review
Browse files

Merge "Fix Dell OS6 and Dell OS9 switch configuration"

parents 2dfaa818 67f09241
No related branches found
No related tags found
No related merge requests found
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
local_action: local_action:
module: dellos6_config module: dellos6_config
provider: "{{ dell_switch_provider }}" provider: "{{ dell_switch_provider }}"
src: dellos6-config.j2 src: "{{ lookup('template', 'dellos6-config.j2') }}"
save: "{{ dell_switch_save | bool }}" save: "{{ dell_switch_save | bool }}"
when: dell_switch_type == 'dellos6' when: dell_switch_type == 'dellos6'
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
local_action: local_action:
module: dellos9_config module: dellos9_config
provider: "{{ dell_switch_provider }}" provider: "{{ dell_switch_provider }}"
src: dellos9-config.j2 src: "{{ lookup('template', 'dellos9-config.j2') }}"
save: "{{ dell_switch_save | bool }}" save: "{{ dell_switch_save | bool }}"
when: dell_switch_type == 'dellos9' when: dell_switch_type == 'dellos9'
......
---
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% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment