From e5ddc8129a686238a4ab7078411dc78c92ee0cf5 Mon Sep 17 00:00:00 2001 From: Pablo Montes Moreno Date: Wed, 14 Dec 2016 16:57:15 +0100 Subject: [PATCH] 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 --- src/generate_descriptor_pkg.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/generate_descriptor_pkg.sh b/src/generate_descriptor_pkg.sh index b4964972..a09fb6af 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 -- 2.25.1