File: fix-neutron-port-creation-50818b9dc7a9cc05.yaml

package info (click to toggle)
puppet-module-neutron 25.0.0-6
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 3,708 kB
  • sloc: ruby: 12,680; python: 38; sh: 15; makefile: 10
file content (11 lines) | stat: -rw-r--r-- 582 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
---
fixes:
  - Parameters of type dict must be at the end of the
    shell command to not cause conflict with the network name.
    Neutron cli picks up the network name as the first parameter
    without "--" prefix, thus tresting type=dict as the network
    name instead of the real network name because it comes before.
    By providing the special dictionary type commands after the
    network name the behaviour of the cli is bypassed and neutron
    takes the network name and proceeds interpreting parameters
    with special format ( not in the form of --<param>=<value> )