From 58b91dd3baaaf72ab65062a4804403cd4a5935b2 Mon Sep 17 00:00:00 2001 From: xudan Date: Thu, 5 Jul 2018 22:37:35 -0400 Subject: Move OVP web portal code to a separate repo The new repo for web portal is https://gerrit.opnfv.org/gerrit/dovetail-webportal JIRA: DOVETAIL-671 Change-Id: Iac085abc3d175b9a091d70d0448af56c7a6845e9 Signed-off-by: xudan --- cvp/docker/db/restart_db.sh | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100755 cvp/docker/db/restart_db.sh (limited to 'cvp/docker/db/restart_db.sh') diff --git a/cvp/docker/db/restart_db.sh b/cvp/docker/db/restart_db.sh deleted file mode 100755 index e44bc07c..00000000 --- a/cvp/docker/db/restart_db.sh +++ /dev/null @@ -1,29 +0,0 @@ -#!/bin/bash -############################################################################## -# Copyright (c) 2016 HUAWEI TECHNOLOGIES CO.,LTD and others. -# -# All rights reserved. This program and the accompanying materials -# are made available under the terms of the Apache License, Version 2.0 -# which accompanies this distribution, and is available at -# http://www.apache.org/licenses/LICENSE-2.0 -############################################################################## - - -if [ "$#" -ne 1 ]; then - echo "Error: missing parameter! try again like this:" - echo "" - echo "./restart_db.sh 192.168.115.2" - echo "" - echo "parameters:" - echo " db_host_ip: your localhost ip address" - echo "" - exit 1 -fi - -export mongodb_port=${mongodb_port:-"27017"} -export testapi_port=${testapi_port:-"8000"} -export db_host_ip=${db_host_ip:-"$1"} - -sudo docker rm -f testapi -sudo docker run -itd -p $testapi_port:8000 --name testapi \ - -e mongodb_url=mongodb://$db_host_ip:$mongodb_port/ opnfv/testapi:cvp.0.5.0 -- cgit 1.2.3-korg