puppet-neutron/spec/unit/provider/neutron_port
Alex Ruiz Estradera 24a60a49d9 Fix the neutron-port resource with binding options
Parameters of type dict must be at the end of the
shell command to not cause conflict with the network name

current shell generated

/usr/bin/neutron port-create --format=shell --name=testport \
--fixed-ip ip_address=172.19.0.2 --binding:host_id=aio \
--binding:profile type=dict interface_name=veth1 net-edge1-gw1

this fails since it matches the first word without "--" to the network
name

correct call

/usr/bin/neutron port-create --format=shell --name=testport \
--fixed-ip ip_address=172.19.0.2 --binding:host_id=aio net-edge1-gw1 \
--binding:profile type=dict interface_name=veth1

Change-Id: Iaa24d52f4f42e0535ad2d0aed1c0a67178af091a
2016-08-25 21:33:01 +00:00
..
neutron_spec.rb Fix the neutron-port resource with binding options 2016-08-25 21:33:01 +00:00