aboutsummaryrefslogtreecommitdiffstats
path: root/vagrant_utils
diff options
context:
space:
mode:
authorVictor Morales <victor.morales@intel.com>2018-05-03 00:37:18 -0700
committerVictor Morales <victor.morales@intel.com>2018-05-03 00:37:18 -0700
commit1d88c96c47c15d06b4a85f4b579e51df84a052b3 (patch)
tree490d95a3f0fc494795f8251b9c9fe9be70dc14e3 /vagrant_utils
parent9659e8fceedd5b8b0b75456c4b30f1d1848baffb (diff)
General improvements
This script contains several changes to improve the code: - The OOM configuration file for deploying ONAP services has been changed to enable more services. - Expose the proxy configuration process for docker. - Remove All-in-One scenario from the options and documentation Change-Id: I7e089f846148fc3ee2ba3572628b7175a677d324 Signed-off-by: Victor Morales <victor.morales@intel.com> Issue-ID: INT-478
Diffstat (limited to 'vagrant_utils')
-rwxr-xr-xvagrant_utils/postinstall.sh8
1 files changed, 1 insertions, 7 deletions
diff --git a/vagrant_utils/postinstall.sh b/vagrant_utils/postinstall.sh
index ea13cc5..24a55db 100755
--- a/vagrant_utils/postinstall.sh
+++ b/vagrant_utils/postinstall.sh
@@ -4,12 +4,6 @@ if [[ "$debug" == "True" ]]; then
set -o xtrace
fi
-if [[ "$1" == "openstack" ]]; then
- source /var/onap/openstack
- deploy_openstack
- exit
-fi
-
source /var/onap/functions
if [[ $no_proxy && $no_proxy != *$IP_ADDRESS* ]]; then
@@ -25,7 +19,7 @@ configure_bind
for serv in $@; do
source /var/onap/${serv}
- configure_service ${serv}_serv.sh
+ configure_service ${serv}
init_${serv}
echo "source /var/onap/${serv}" >> ~/.bashrc
done