blob: 6c2896574b4baedc78d80975567f8484852e41eb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
#/bin/bash
MYSQL_IP=`echo $MYSQL_ADDR | cut -d: -f 1`
MYSQL_PORT=`echo $MYSQL_ADDR | cut -d: -f 2`
if [ $MYSQL_AUTH ]; then
MYSQL_ROOT_USER=`echo $MYSQL_AUTH | cut -d: -f 1`
MYSQL_ROOT_PASSWORD=`echo $MYSQL_AUTH | cut -d: -f 2`
else
MYSQL_ROOT_USER="root"
MYSQL_ROOT_PASSWORD="root"
fi
function create_database {
cd /service/vfc/nfvo/lcm/resources/bin
bash initDB.sh $MYSQL_ROOT_USER $MYSQL_ROOT_PASSWORD $MYSQL_PORT $MYSQL_IP
}
function migrate_database {
cd /service/vfc/nfvo/lcm
python manage.py makemigrations database
python manage.py migrate
}
cd /service
if [ ! -f dbexist.txt ]; then
echo 1 > dbexist.txt
create_database
migrate_database
fi
|