diff options
Diffstat (limited to 'boot')
-rwxr-xr-x | boot/robot/demo.sh | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/boot/robot/demo.sh b/boot/robot/demo.sh index b8df99ee..56cfbabe 100755 --- a/boot/robot/demo.sh +++ b/boot/robot/demo.sh @@ -25,6 +25,9 @@ function usage echo " demo.sh init_robot [ <etc_hosts_prefix> ]" echo " - Initialize robot after all ONAP VMs have started" echo " " + echo " demo.sh cds" + echo " - Instantiate vFW service with Controller Design Studio feature for the a demo customer (DemoCust<uuid>)" + echo " " echo " demo.sh instantiateVFW | instantiateVFWCL" echo " - Instantiate vFW or vFWCL module for the a demo customer (DemoCust<uuid>)" echo " " @@ -143,6 +146,10 @@ do VARIABLES="$VARIABLES -v HB_IPV4_OAM_ADDRESS:$1" shift ;; + cds) + TAG="cds" + shift + ;; *) usage exit |