diff options
author | Fatih Degirmenci <fdegir@gmail.com> | 2017-12-19 17:21:13 +0100 |
---|---|---|
committer | Fatih Degirmenci <fdegir@gmail.com> | 2017-12-19 17:21:13 +0100 |
commit | 6dee51bd35ceffae9c94ab8f19650b732fd213a2 (patch) | |
tree | 54a863fd77e4e07961d89c33ddda5d717f28d080 | |
parent | 745b66b6d7fd1d9966c8f5944238edb9d245c8ed (diff) |
Rename variable OPNFV_SCENARIO to DEPLOY_SCENARIO
Rest of the OPNFV projects use the variable DEPLOY_SCENARIO so
XCI should be aligned with them as well even though OPNFV_SCENARIO
fits better than DEPLOY_SCENARIO.
Change-Id: Id48c41fa8a1fa9493cfc7a4906f64b6d8ed27d64
Signed-off-by: Fatih Degirmenci <fdegir@gmail.com>
-rw-r--r-- | os-odl-nofeature/xci_overrides | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/os-odl-nofeature/xci_overrides b/os-odl-nofeature/xci_overrides index ed6c448..2c65df0 100644 --- a/os-odl-nofeature/xci_overrides +++ b/os-odl-nofeature/xci_overrides @@ -1,7 +1,7 @@ #!/bin/bash -if [[ $OPNFV_SCENARIO == "os-odl-nofeature" ]] && [[ $XCI_FLAVOR == "ha" ]]; then +if [[ $DEPLOY_SCENARIO == "os-odl-nofeature" ]] && [[ $XCI_FLAVOR == "ha" ]]; then export VM_MEMORY_SIZE=20480 -elif [[ $OPNFV_SCENARIO == "os-odl-nofeature" ]]; then +elif [[ $DEPLOY_SCENARIO == "os-odl-nofeature" ]]; then export VM_MEMORY_SIZE=16384 -fi
\ No newline at end of file +fi |