diff options
author | Yang Xu <yang.xu3@huawei.com> | 2018-09-18 13:15:44 -0400 |
---|---|---|
committer | Yang Xu <yang.xu3@huawei.com> | 2018-09-18 13:16:09 -0400 |
commit | 1cd32e8883a75045e4440f52533e890f8658e476 (patch) | |
tree | 0aa20b1ac6a522a1ccd68c48c9698ccdb21d6cdf /boot/robot/demo.sh | |
parent | 23a18fbae28155c5b301615d3e1bca0065e12af0 (diff) |
Add cds option to Robot demo script
Change-Id: I536a34b16f507ab6eb7a0a5c0b99abc895134e62
Issue-ID: CCSDK-537
Signed-off-by: Yang Xu <yang.xu3@huawei.com>
Diffstat (limited to 'boot/robot/demo.sh')
-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 |