diff options
author | 2020-06-08 12:16:24 -0400 | |
---|---|---|
committer | 2020-06-19 14:15:10 -0400 | |
commit | d99e2dfa5c1db6daed4e98ea208089969a0867cf (patch) | |
tree | 9c4cdfdfff13d37f184cb4f1aa86a6d23bebf6f1 /ms/generic-resource-api/src/main/resources/startGra.sh | |
parent | 5563f521d8ca0b38f93d51246d2aea8c6648c3a4 (diff) |
Implement GRA preload and service data objects
Implements CRUD operations and RPCs for GRA preload data, as well
as adding data object for service-data.
Change-Id: I93d268e7f1cfbcd4e839e122f72ce02928dad807
Issue-ID: SDNC-1205
Issue-ID: SDNC-1209
Issue-ID: SDNC-1210
Issue-ID: SDNC-1213
Signed-off-by: Dan Timoney <dtimoney@att.com>
Diffstat (limited to 'ms/generic-resource-api/src/main/resources/startGra.sh')
-rw-r--r-- | ms/generic-resource-api/src/main/resources/startGra.sh | 74 |
1 files changed, 74 insertions, 0 deletions
diff --git a/ms/generic-resource-api/src/main/resources/startGra.sh b/ms/generic-resource-api/src/main/resources/startGra.sh new file mode 100644 index 0000000..42ef339 --- /dev/null +++ b/ms/generic-resource-api/src/main/resources/startGra.sh @@ -0,0 +1,74 @@ +#!/bin/bash + +### +# ============LICENSE_START======================================================= +# ONAP : SDNC +# ================================================================================ +# Copyright (C) 2020 AT&T Intellectual Property. All rights +# reserved. +# ================================================================================ +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ============LICENSE_END========================================================= +### + +export SDNC_HOME=${SDNC_HOME:-/opt/onap/sdnc} +export GRA_JAR=${GRA_JAR:-@sdnc.gra.jar@} +export SVCLOGIC_DIR=${SVCLOGIC_DIR:-opt/onap/sdnc/svclogic/graphs} +export LOG_PATH=${LOG_PATH:-/var/log/onap/sdnc} +export SDNC_CONFIG_DIR=${SDNC_CONFIG_DIR:-/opt/onap/sdnc/config} +export SDNC_CERT_DIR=${SDNC_CERT_DIR:-${SDNC_CONFIG_DIR}} +export TRUSTSTORE=${TRUSTSTORE:-truststoreONAPall.jks} +export JAVA_SECURITY_DIR=${JAVA_SECURITY_DIR:-/etc/ssl/certs/java} +export CACERT_PASSWORD=${CACERT_PASSWORD:-${TRUSTSTORE_PASSWORD}} +export MYSQL_DB_HOST=${MYSQL_DB_HOST:-dbhost} + +# +# Wait for database +# +echo "Waiting for database" +until mysqladmin ping -h ${MYSQL_DB_HOST} --silent +do + printf "." + sleep 1 +done +echo -e "\nDatabase ready" + +# Create tablespace and user account + +mysql -h ${MYSQL_DB_HOST} -u root -p${MYSQL_ROOT_PASSWORD} mysql <<-END +CREATE DATABASE ${MYSQL_DB_DATABASE}; +CREATE USER '${MYSQL_DB_USER}'@'localhost' IDENTIFIED BY '${MYSQL_DB_PASSWD}'; +CREATE USER '${MYSQL_DB_USER}'@'%' IDENTIFIED BY '${MYSQL_DB_PASSWD}'; +GRANT ALL PRIVILEGES ON ${MYSQL_DB_DATABASE}.* TO '${MYSQL_DB_USER}'@'localhost' WITH GRANT OPTION; +GRANT ALL PRIVILEGES ON ${MYSQL_DB_DATABASE}.* TO '${MYSQL_DB_USER}'@'%' WITH GRANT OPTION; +commit; +END + +# Initialize schema +#mysql -h ${MYSQL_DB_HOST} -u ${MYSQL_DB_USER} -p${MYSQL_DB_PASSWD} ${MYSQL_DB_DATABASE} < ${SDNC_HOME}/config/schema.sql + +if [ ! -f ${SDNC_CERT_DIR}/${TRUSTSTORE} ] +then + echo "${SDNC_CERT_DIR}/${TRUSTSTORE} not found ... cannot install ONAP CA certs" +elif [ -z "$TRUSTSTORE_PASSWORD" ] +then + echo "TRUSTSTORE_PASSWORD unset - cannot install ONAP CA certs" +else + sudo keytool -importkeystore -srckeystore ${SDNC_CERT_DIR}/${TRUSTSTORE} -srcstorepass ${TRUSTSTORE_PASSWORD} -destkeystore ${JAVA_SECURITY_DIR}/cacerts -deststorepass ${CACERT_PASSWORD} + echo -e "\nCerts ready" +fi + + +cd $SDNC_HOME +java -DserviceLogicDirectory=${SVCLOGIC_DIR} -DLOG_PATH=${LOG_PATH} -jar ${SDNC_HOME}/lib/${GRA_JAR} + |