From efe77c01bdceac8902b91f20cae6c5670db33a84 Mon Sep 17 00:00:00 2001 From: Nate Potter Date: Wed, 4 Apr 2018 07:41:08 -0700 Subject: Fix all-in-one vagrant machine name Currently when inputting the command for all_in_one, vagrant can't find a machine defined for that name because it's looking for a machine called all-in-one. This patch updates the name of the VM in run.sh to all-in-one. Change-Id: I599d68c91e4c6e614aa884fe7c305b64bbf88e91 Signed-off-by: Nathaniel Potter Issue-ID: INT-460 --- tools/run.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/run.sh b/tools/run.sh index d931602..fe955e1 100755 --- a/tools/run.sh +++ b/tools/run.sh @@ -15,7 +15,7 @@ Optional arguments: -c Test case to use in testing mode. Commands: - all_in_one Deploy in all-in-one mode. + all-in-one Deploy in all-in-one mode. dns|mr|sdc|aai|mso|robot|vid|sdnc|portal|dcae|policy|appc|vfc|vnfsdk|multicloud|ccsdk|vvp|openstack|msb|oom|dmaap Deploy chosen service. testing Deploy in testing mode. EOF @@ -62,7 +62,7 @@ while getopts "ygis:c:" OPTION "${@:2}"; do done case $COMMAND in - "all_in_one" ) + "all-in-one" ) export DEPLOY_MODE='all-in-one' ;; "dns" | "mr" | "sdc" | "aai" | "mso" | "robot" | "vid" | "sdnc" | "portal" | "dcae" | "policy" | "appc" | "vfc" | "vnfsdk"| "multicloud" | "ccsdk" | "vvp" | "openstack" | "msb" | "oom" | "dmaap" ) -- cgit 1.2.3-korg