diff options
author | Tomofumi Hayashi <tohayash@redhat.com> | 2016-12-13 14:00:35 +0900 |
---|---|---|
committer | Tomofumi Hayashi <tohayash@redhat.com> | 2016-12-16 04:24:06 +0000 |
commit | 17e4f25b3e385fbcd55e5c4c34849b06071a2c27 (patch) | |
tree | ac7c5265d52889c5b9b21f2bd97171218227d17e /lib | |
parent | ead4552c3344308b9620911c76a917de868ed2cb (diff) |
Fix odl_version text with comments (Boron->boron).
At present, odl_version is case-sensitive hence opnfv-deploy fail
with 'odl_version: Boron'. So the change fix it.
Change-Id: Ifd611c56b9802b4c5033728e70cce03eb55985cf
Signed-off-by: Tomofumi Hayashi <tohayash@redhat.com>
Diffstat (limited to 'lib')
-rwxr-xr-x | lib/overcloud-deploy-functions.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/overcloud-deploy-functions.sh b/lib/overcloud-deploy-functions.sh index 169640fe..216fa6c6 100755 --- a/lib/overcloud-deploy-functions.sh +++ b/lib/overcloud-deploy-functions.sh @@ -130,6 +130,8 @@ EOI # Set ODL version accordingly if [[ "${deploy_options_array['sdn_controller']}" == 'opendaylight' && -n "${deploy_options_array['odl_version']}" ]]; then case "${deploy_options_array['odl_version']}" in + beryllium) odl_version='' + ;; boron) odl_version='boron' ;; cabron) odl_version='master' |