aboutsummaryrefslogtreecommitdiffstats
path: root/bootstrap/vagrant-onap/vagrant_utils/postinstall.sh
blob: 7083f3d020544870c0d53d2afd8aff896ebbdc69 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/bash

if [[ "$debug" == "True" ]]; then
    set -o xtrace
fi

source /var/onap/functions

create_configuration_files
install_dev_tools
configure_bind

for serv in $@; do
    source /var/onap/${serv}
    configure_service ${serv}_serv.sh
    init_${serv}
done