From 5a14ee34314b6d500c63dc19523ee4748734c8c0 Mon Sep 17 00:00:00 2001 From: Guo Ruijing Date: Wed, 10 May 2017 15:05:30 -0700 Subject: setup onap demo by vagrant Change-Id: I7d46f7f6081e7aed0cc2ea2506a47925171f9be2 Co-Authored-By: Chen, Wei Signed-off-by: Guo Ruijing --- vagrant/run_demo.sh | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100755 vagrant/run_demo.sh (limited to 'vagrant/run_demo.sh') diff --git a/vagrant/run_demo.sh b/vagrant/run_demo.sh new file mode 100755 index 00000000..e99b28d7 --- /dev/null +++ b/vagrant/run_demo.sh @@ -0,0 +1,17 @@ +#!/usr/bin/env bash +set -ex + +sudo apt-get install -y virtualbox +ver=$(apt-cache policy vagrant | grep Installed | cut -d ':' -f 3) +if [[ "$ver" != "1.8.7" ]]; then + wget --no-check-certificate https://releases.hashicorp.com/vagrant/1.8.7/vagrant_1.8.7_x86_64.deb + sudo dpkg -i vagrant_1.8.7_x86_64.deb +fi + +vagrant destroy -f +vagrant up +vagrant ssh control -c "/vagrant/create_onap.sh" +sudo sed -i "/.*simpledemo.openecomp.org.*/d" /etc/hosts +cat hosts | sudo tee -a /etc/hosts +sleep 300 +ssh -o StrictHostKeyChecking=no ubuntu@portal.api.simpledemo.openecomp.org -i onap "curl sina.com.cn" -- cgit 1.2.3-korg