From: Pablo Montes Moreno Date: Wed, 14 Dec 2016 15:57:15 +0000 (+0100) Subject: Minor change so vpci in sample vnfd generated is between single quotes so it still... X-Git-Url: https://osm.etsi.org/gitweb/?a=commitdiff_plain;h=3c438e58b79d07e093b88d0ab58d463d64f7510b;p=osm%2Fdescriptor-packages.git Minor change so vpci in sample vnfd generated is between single quotes so it still works when the pci only contains numbers Signed-off-by: Pablo Montes Moreno --- diff --git a/src/generate_descriptor_pkg.sh b/src/generate_descriptor_pkg.sh index b496497..a09fb6a 100755 --- a/src/generate_descriptor_pkg.sh +++ b/src/generate_descriptor_pkg.sh @@ -231,7 +231,7 @@ EOF virtual-interface: type: VIRTIO bandwidth: '0' - vpci: 0000:00:0a.0 + vpci: '0000:00:0a.0' vnfd-connection-point-ref: eth0 EOF @@ -244,7 +244,7 @@ EOF virtual-interface: type: ${INTF_TYPE} bandwidth: '0' - vpci: 0000:00:${pci}.0 + vpci: '0000:00:${pci}.0' vnfd-connection-point-ref: eth${eth} EOF done