Fix physical network configuration on Dell switches

The dellos Ansible modules do not accept a `transport` key in the
provider parameter anymore, even in Ansible 2.4.0.

Change-Id: I4bdaa337cb9c6cb93f36338a191a9aa78e2c13f0
Story: 2004588
Task: 28464
This commit is contained in:
Pierre Riteau 2018-12-13 15:40:43 +00:00
parent 044573ad9c
commit c7743aa615
3 changed files with 7 additions and 2 deletions

View File

@ -10,6 +10,5 @@ switch_dellos_provider:
host: "{{ ansible_host|default(inventory_hostname) }}"
username: "{{ ansible_user }}"
password: "{{ ansible_ssh_pass }}"
transport: cli
authorize: yes
auth_pass: "{{ switch_auth_pass }}"

View File

@ -57,7 +57,6 @@ passwords. It applies global configuration for LLDP, and enables two
host: "{{ switch_host }}"
username: "{{ switch_user }}"
password: "{{ switch_password }}"
transport: cli
authorize: yes
auth_pass: "{{ switch_auth_pass }}"
dell_switch_config:

View File

@ -0,0 +1,7 @@
---
fixes:
- |
Fixes a compatibility issue with Ansible modules for Dell switches which
was preventing physical network configuration for this type of hardware.
See `Story 2004588 <https://storyboard.openstack.org/#!/story/2004588>`__
for details.