#!/bin/bash ### # ============LICENSE_START======================================================= # ONAP : CCSDK # ================================================================================ # 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 CCSDK_HOME=${CCSDK_HOME:-/opt/onap/ccsdk} export SLIBOOT_JAR=${SLIBOOT_JAR:-@ccsdk.sliboot.jar@} export SVCLOGIC_DIR=${SVCLOGIC_DIR:-opt/onap/ccsdk/svclogic/graphs} export LOG_PATH=${LOG_PATH:-/var/log/onap/ccsdk} export CCSDK_CONFIG_DIR=${CCSDK_CONFIG_DIR:-/opt/onap/ccsdk/config} export JAVA_SECURITY_DIR=${JAVA_SECURITY_DIR:-/etc/ssl/certs/java} 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" echo -e "\nCerts ready" cd $CCSDK_HOME java -DserviceLogicDirectory=${SVCLOGIC_DIR} -DLOG_PATH=${LOG_PATH} -jar ${CCSDK_HOME}/lib/${SLIBOOT_JAR}