summaryrefslogtreecommitdiffstats
path: root/docker/demo.sh
diff options
context:
space:
mode:
authorGary Wu <gary.i.wu@huawei.com>2018-08-03 22:38:09 -0700
committerGary Wu <gary.i.wu@huawei.com>2018-08-03 22:38:09 -0700
commitb302477609fd76d9fdd333937f32ee75f2a619e3 (patch)
tree60fc04257311d0fa08c6f16820c884e03f1327d8 /docker/demo.sh
parent644ca6a36498c72e93977413529500fdf1c72eea (diff)
Remove obsolete files
Change-Id: I0075d16a8cbe67b93e9ac68d5a5033767aac1459 Issue-ID: INT-605 Signed-off-by: Gary Wu <gary.i.wu@huawei.com>
Diffstat (limited to 'docker/demo.sh')
-rw-r--r--docker/demo.sh54
1 files changed, 0 insertions, 54 deletions
diff --git a/docker/demo.sh b/docker/demo.sh
deleted file mode 100644
index 98dc123f..00000000
--- a/docker/demo.sh
+++ /dev/null
@@ -1,54 +0,0 @@
-#!/bin/bash
-
-# Set the defaults
-if [ $# -eq 0 ];then
- echo "Usage: demo.sh init"
- echo " demo.sh preload <vnf_name> <module_name>"
- echo " demo.sh appc <module_name>"
- exit
-fi
-##
-## if more than 1 tag is supplied, the must be provided with -i or -e
-##
-while [ $# -gt 0 ]
-do
- key="$1"
-
- case $key in
- init)
- TAG="InitDemo"
- shift
- ;;
- preload)
- TAG="PreloadDemo"
- shift
- if [ $# -ne 2 ];then
- echo "Usage: demo.sh preload <vnf_name> <module_name>"
- exit
- fi
- VARIABLES="$VARIABLES -v VNF_NAME:$1"
- shift
- VARIABLES="$VARIABLES -v MODULE_NAME:$1"
- shift
- ;;
- appc)
- TAG="APPCMountPointDemo"
- shift
- if [ $# -ne 1 ];then
- echo "Usage: demo.sh appc <module_name>"
- exit
- fi
- VARIABLES="$VARIABLES -v MODULE_NAME:$1"
- shift
- ;;
- *)
- echo "Usage: demo.sh init"
- echo " demo.sh preload <vnf_name> <module_name>"
- echo " demo.sh appc <module_name>"
- exit
- esac
-done
-
-ETEHOME=/var/opt/OpenECOMP_ETE
-VARIABLEFILES="-V /share/config/vm_properties.py -V /share/config/robot_properties_ete.py -V /share/config/robot_preload_parameters.py"
-docker exec openecompete_container ${ETEHOME}/runTags.sh ${VARIABLEFILES} ${VARIABLES} -d /share/logs/demo/${TAG} -i ${TAG} 2> ${TAG}.out \ No newline at end of file