X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=rulemgt-standalone%2Fsrc%2Fmain%2Fassembly%2Fbin%2Frun.sh;h=1db65ca6ee37a4e4b718b8ee8807e156419a5204;hb=942ce2677d26169697f75f136e2b6f4c0e6ab147;hp=983ed6297fa673ef679734dcb171bca528be4900;hpb=e79e3198e01b4418a4c0eca046c1790be366d5dd;p=holmes%2Frule-management.git diff --git a/rulemgt-standalone/src/main/assembly/bin/run.sh b/rulemgt-standalone/src/main/assembly/bin/run.sh index 983ed62..1db65ca 100644 --- a/rulemgt-standalone/src/main/assembly/bin/run.sh +++ b/rulemgt-standalone/src/main/assembly/bin/run.sh @@ -1,7 +1,7 @@ -#!/bin/sh +#!/usr/bin/env bash # -# Copyright 2017-2020 ZTE Corporation. +# Copyright 2017-2021 ZTE Corporation. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -60,12 +60,10 @@ fi export SERVICE_IP=`hostname -i | awk '{print $1}'` echo SERVICE_IP=${SERVICE_IP} -if [ ! -z ${TESTING} ] && [ ${TESTING} = 1 ]; then - if [ ! -z ${HOST_IP} ]; then - export HOSTNAME=${HOST_IP}:9101 - else - export HOSTNAME=${SERVICE_IP}:9101 - fi +if [ ! -z ${HOST_IP} ]; then + export HOSTNAME=${HOST_IP}:9101 +else + export HOSTNAME=${SERVICE_IP}:9101 fi export DB_PORT=5432 @@ -112,18 +110,18 @@ fi ${RUNHOME}/initDB.sh "$JDBC_USERNAME" "$JDBC_PASSWORD" "$DB_NAME" "$DB_PORT" "${URL_JDBC%:*}" -#Register the fronten to MSB -#body='{"serviceName":"holmes","version":"v1","url":"/iui/holmes","nodes":[{"ip":"host_ip","port":"9104","lb_server_params":"","checkType":"","checkUrl":"","checkInterval":"","checkTimeOut":"","ttl":"","ha_role":""}],"protocol":"UI","visualRange":"0|1","lb_policy":"","publish_port":"","namespace":"","network_plane_type":"","host":"","path":"","labels":[],"metadata":[]}' -#msg_body=${body/host_ip/"${HOSTNAME%:*}"} -#curl -X POST -H "Content-Type: application/json" -d ${msg_body} http://${MSB_ADDR}/api/msdiscover/v1/services?is_manual=true -#echo Registered UI to MSB. - if [ -f "/opt/app/osaaf/local/org.onap.holmes-rule-mgmt.crt" ]; then sed -i "s|/etc/ssl/certs/holmes-frontend-selfsigned.crt|/opt/app/osaaf/local/org.onap.holmes-rule-mgmt.crt|" "/etc/nginx/conf.d/nginx-https.conf" sed -i "s|/etc/ssl/private/holmes-frontend.key|/opt/app/osaaf/local/org.onap.holmes-rule-mgmt.key|" "/etc/nginx/conf.d/nginx-https.conf" fi -if [ ${ENABLE_ENCRYPT} = true ]; then +if [ "$MSB_IAG_SERVICE_PORT"x = "443"x ]; then + sed -i "s|http://msb-iag.onap|https://$MSB_IAG_SERVICE_HOST:$MSB_IAG_SERVICE_PORT|g" /etc/nginx/conf.d/nginx-http*.conf +else + sed -i "s|http://msb-iag.onap|http://$MSB_IAG_SERVICE_HOST:$MSB_IAG_SERVICE_PORT|g" /etc/nginx/conf.d/nginx-http*.conf +fi + +if [ "${ENABLE_ENCRYPT}"x = "true"x ]; then nginx -c /etc/nginx/conf.d/nginx-https.conf else nginx -c /etc/nginx/conf.d/nginx-http.conf