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 <pablo.montesmoreno@telefonica.com>
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 @@
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 @@
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