blob: 1530387355550cc7457d3406d5ad15ca724a3d52 [file] [log] [blame]
Eduardo Sousa09a1e972018-09-21 11:06:32 +01001#!/bin/bash
2
3max_attempts=120
4function wait_db(){
5 db_host=$1
6 db_port=$2
7 attempt=0
8 echo "Wait until $max_attempts seconds for MySQL mano Server ${db_host}:${db_port} "
9 while ! mysqladmin ping -h"$db_host" -P"$db_port" --silent; do
10 #wait 120 sec
11 if [ $attempt -ge $max_attempts ]; then
12 echo
13 echo "Can not connect to database ${db_host}:${db_port} during $max_attempts sec"
14 return 1
15 fi
16 attempt=$[$attempt+1]
17 echo -n "."
18 sleep 1
19 done
20 return 0
21}
22
23function is_db_created() {
24 db_host=$1
25 db_port=$2
26 db_user=$3
27 db_pswd=$4
28 db_name=$5
29
30 RESULT=`mysqlshow -h"$db_host" -P"$db_port" -u"$db_user" -p"$db_pswd" | grep -v Wildcard | grep -o $db_name`
31 if [ "$RESULT" == "$db_name" ]; then
32 echo "DB $db_name exists"
33 return 0
34 else
35 echo "DB $db_name does not exist"
36 return 1
37 fi
38}
39
40KEYSTONE_IP=`ifconfig eth0 | grep -Eo 'inet (addr:)?([0-9]*\.){3}[0-9]*' | grep -Eo '([0-9]*\.){3}[0-9]*'`
41
42wait_db "$DB_HOST" "$DB_PORT" || exit 1
43
44is_db_created "$DB_HOST" "$DB_PORT" "$ROOT_DB_USER" "$ROOT_DB_PASSWORD" "keystone" && DB_EXISTS="Y"
45
46if [ -z $DB_EXISTS ]; then
47 mysql -h"$DB_HOST" -P"$DB_PORT" -u"$ROOT_DB_USER" -p"$ROOT_DB_PASSWORD" --default_character_set utf8 -e "CREATE DATABASE keystone"
48 mysql -h"$DB_HOST" -P"$DB_PORT" -u"$ROOT_DB_USER" -p"$ROOT_DB_PASSWORD" --default_character_set utf8 -e "GRANT ALL PRIVILEGES ON keystone.* TO 'keystone'@'localhost' IDENTIFIED BY '$KEYSTONE_DB_PASSWORD'"
49 mysql -h"$DB_HOST" -P"$DB_PORT" -u"$ROOT_DB_USER" -p"$ROOT_DB_PASSWORD" --default_character_set utf8 -e "GRANT ALL PRIVILEGES ON keystone.* TO 'keystone'@'%' IDENTIFIED BY '$KEYSTONE_DB_PASSWORD'"
50fi
51
52# Setting Keystone database connection
53sed -i "721s%.*%connection = mysql+pymysql://keystone:$KEYSTONE_DB_PASSWORD@$DB_HOST:$DB_PORT/keystone%" /etc/keystone/keystone.conf
54
55# Setting Keystone tokens
56sed -i "2934s%.*%provider = fernet%" /etc/keystone/keystone.conf
57
58# Populate Keystone database
59if [ -z $DB_EXISTS ]; then
60 su -s /bin/sh -c "keystone-manage db_sync" keystone
61fi
62
63# Initialize Fernet key repositories
64keystone-manage fernet_setup --keystone-user keystone --keystone-group keystone
65keystone-manage credential_setup --keystone-user keystone --keystone-group keystone
66
67# Bootstrap Keystone service
68if [ -z $DB_EXISTS ]; then
69 keystone-manage bootstrap --bootstrap-password "$ADMIN_PASSWORD" \
70 --bootstrap-admin-url http://"$KEYSTONE_IP":5000/v3/ \
71 --bootstrap-internal-url http://"$KEYSTONE_IP":5000/v3/ \
72 --bootstrap-public-url http://"$KEYSTONE_IP":5000/v3/ \
73 --bootstrap-region-id RegionOne
74fi
75
76# Restart Apache Service
77service apache2 restart
78
79# Create NBI User
80if [ -z $DB_EXISTS ]; then
81 openstack user create --domain default --password "$NBI_PASSWORD" nbi
82 openstack project create --domain defaul --description "Service Project" service
83 openstack role add --project service --user nbi admin
84fi
85
86while [ $(ps -ef | grep -v grep | grep apache2 | wc -l) -ne 0 ]
87do
88 sleep 60
89done
90
91exit 1