aboutsummaryrefslogtreecommitdiffstats
path: root/boot/multiserv_all_serv.sh
diff options
context:
space:
mode:
authorGary Wu <gary.i.wu@huawei.com>2018-08-06 14:29:39 -0700
committerGary Wu <gary.i.wu@huawei.com>2018-08-06 14:29:39 -0700
commit3bed7ed5b07ab03934fe706c1a5f05eb05a5ffcd (patch)
tree370bbb32687e6f4a1aede4143437337de2f49fc6 /boot/multiserv_all_serv.sh
parent103624f3c9c6fa6c7fc928433bc596e91d207f29 (diff)
Bug fix on boot scripts location
Two multiserv VM boot scripts were located in the wrong directory. This fixes the issue. Change-Id: Iac6336d279882af0197ab7711bfa52b1a25bcfc8 Issue-ID: INT-606 Signed-off-by: Gary Wu <gary.i.wu@huawei.com>
Diffstat (limited to 'boot/multiserv_all_serv.sh')
-rw-r--r--boot/multiserv_all_serv.sh16
1 files changed, 16 insertions, 0 deletions
diff --git a/boot/multiserv_all_serv.sh b/boot/multiserv_all_serv.sh
new file mode 100644
index 00000000..57de2908
--- /dev/null
+++ b/boot/multiserv_all_serv.sh
@@ -0,0 +1,16 @@
+#!/bin/bash
+HTTP_PROXY=$(cat /opt/config/http_proxy.txt)
+HTTPS_PROXY=$(cat /opt/config/https_proxy.txt)
+
+if [ $HTTP_PROXY != "no_proxy" ]
+then
+ export http_proxy=$HTTP_PROXY
+ export https_proxy=$HTTPS_PROXY
+fi
+
+bash /opt/msb_vm_init.sh &>/dev/null &disown
+bash /opt/vnfsdk_vm_init.sh &>/dev/null &disown
+bash /opt/mvim_vm_init.sh &>/dev/null &disown
+bash /opt/vfc_vm_init.sh &>/dev/null &disown
+bash /opt/uui_vm_init.sh &>/dev/null &disown
+bash /opt/esr_vm_init.sh &>/dev/null &disown \ No newline at end of file