summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNate Potter <nathaniel.potteR@intel.com>2018-04-04 07:41:08 -0700
committerNate Potter <nathaniel.potteR@intel.com>2018-04-04 07:48:58 -0700
commitefe77c01bdceac8902b91f20cae6c5670db33a84 (patch)
tree0a7e209f6543f5b31670407578e36c3d81a46850
parent5d9b7f5c4bff05cf6a035604796595cf9b39eac2 (diff)
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 <nathaniel.potter@intel.com> Issue-ID: INT-460
-rwxr-xr-xtools/run.sh4
1 files 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 <case>
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" )