diff options
author | Nate Potter <nathaniel.potteR@intel.com> | 2018-04-04 07:41:08 -0700 |
---|---|---|
committer | Nate Potter <nathaniel.potteR@intel.com> | 2018-04-04 07:48:58 -0700 |
commit | efe77c01bdceac8902b91f20cae6c5670db33a84 (patch) | |
tree | 0a7e209f6543f5b31670407578e36c3d81a46850 /tools/run.sh | |
parent | 5d9b7f5c4bff05cf6a035604796595cf9b39eac2 (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
Diffstat (limited to 'tools/run.sh')
-rwxr-xr-x | tools/run.sh | 4 |
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" ) |