remove vIMS folder
[demo.git] / boot / robot / demo.sh
index a5a8e40..56cfbab 100755 (executable)
@@ -24,6 +24,9 @@ function usage
        echo " "
        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>)"
@@ -31,7 +34,7 @@ function usage
        echo "       demo.sh deleteVNF <module_name from instantiateVFW>"
     echo "               - Delete the module created by instantiateVFW"
        echo " "
-       echo "       demo.sh heatbridge <stack_name> <service_instance_id> <service> <ipv4-oam-address>"
+       echo "       demo.sh heatbridge <stack_name> <service_instance_id> <service> [<ipv4-oam-address>]"
     echo "               - Run heatbridge against the stack for the given service instance and service"
 }
 
@@ -130,8 +133,8 @@ do
        heatbridge)
                        TAG="heatbridge"
                        shift
-                       if [ $# -ne 4 ];then
-                               echo "Usage: demo.sh heatbridge <stack_name> <service_instance_id> <service> <ipv4-oam-address>"
+                       if [ $# -lt 3 ];then
+                               echo "Usage: demo.sh heatbridge <stack_name> <service_instance_id> <service> [<ipv4-oam-address>]"
                                exit
                        fi
                        VARIABLES="$VARIABLES -v HB_STACK:$1"
@@ -143,6 +146,10 @@ do
                        VARIABLES="$VARIABLES -v HB_IPV4_OAM_ADDRESS:$1"
             shift
                        ;;
+       cds)
+                       TAG="cds"
+                       shift
+                       ;;
        *)
                        usage
                        exit