aboutsummaryrefslogtreecommitdiffstats
path: root/bootstrap/vagrant-onap/vagrant_utils/postinstall.sh
blob: c1b1c33a21608c2fe0adc25cdf2c2513eb6e3aa7 (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

update_repos
create_configuration_files
configure_bind

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