From dd074806ad51761392a9cca3f1f04fbbebd3de22 Mon Sep 17 00:00:00 2001 From: Victor Morales Date: Wed, 26 Jul 2017 16:06:35 -0500 Subject: Sync latest changes for vagrant-onap Given some internal procedures was not possible to submit all the changes. In the meantime, those changes were placed into an non-official project. This change syncronizes the latest changes into the official repository. Issue-id: INT-17 Change-Id: Ia4125f4b70273401e4ed3cc1908d2e2ad7d1c2e9 Signed-off-by: Victor Morales --- bootstrap/vagrant-onap/tools/run.sh | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100755 bootstrap/vagrant-onap/tools/run.sh (limited to 'bootstrap/vagrant-onap/tools/run.sh') diff --git a/bootstrap/vagrant-onap/tools/run.sh b/bootstrap/vagrant-onap/tools/run.sh new file mode 100755 index 000000000..e192ba171 --- /dev/null +++ b/bootstrap/vagrant-onap/tools/run.sh @@ -0,0 +1,17 @@ +#!/bin/bash + +case $1 in + "all_in_one" ) + export DEPLOY_MODE='all-in-one' ;; + "dns" | "mr" | "sdc" | "aai" | "mso" | "robot" | "vid" | "sdnc" | "portal" | "dcae" | "policy" | "appc" ) + export DEPLOY_MODE='individual' ;; + "testing" ) + export DEPLOY_MODE='testing' + export TEST_SUITE=${2:-*} + export TEST_CASE=${3:-*} + + rm -rf ../opt/ + rm -rf ~/.m2/;; +esac +vagrant destroy -f $1 +vagrant up $1 -- cgit 1.2.3-korg