Fix copyright to avoid noisy diff after build
[sdnc/northbound.git] / dmaap-listener / src / main / scripts / start-dmaap-listener.sh
1 #!/bin/bash
2
3 ###
4 # ============LICENSE_START=======================================================
5 # openECOMP : SDN-C
6 # ================================================================================
7 # Copyright (C) 2017 AT&T Intellectual Property. All rights
8 #                                                       reserved.
9 # ================================================================================
10 # Licensed under the Apache License, Version 2.0 (the "License");
11 # you may not use this file except in compliance with the License.
12 # You may obtain a copy of the License at
13
14 #      http://www.apache.org/licenses/LICENSE-2.0
15
16 # Unless required by applicable law or agreed to in writing, software
17 # distributed under the License is distributed on an "AS IS" BASIS,
18 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19 # See the License for the specific language governing permissions and
20 # limitations under the License.
21 # ============LICENSE_END=========================================================
22 ###
23
24 PROPERTY_DIR=${PROPERTY_DIR:-/opt/sdnc/data/properties}
25
26 LISTENER=dmaap-listener
27
28
29
30 PIDFILE=/tmp/.${LISTENER}-pid
31 UEBLISTENERROOT=${UEBLISTENERROOT:-/opt/app/dmaap-listener}
32 JAVA_HOME=${JAVA_HOME:-/usr/lib/jvm/java-7-oracle}
33 JAVA_OPTS=${JAVA_OPTS:--Dhttps.protocols=TLSv1.1,TLSv1.2}
34 JAVA=${JAVA:-${JAVA_HOME}/bin/java}
35
36 # Redirect output from script to $LISTENER.out
37 exec >> ${UEBLISTENERROOT}/logs/$LISTENER.out
38 exec 2>&1
39
40 if [ -f $PIDFILE ]
41 then
42   pid=$(cat $PIDFILE)
43   if [ "$pid" != "" ]
44   then
45     if kill -0 $pid
46     then
47       echo "$LISTENER already running"
48       exit 0
49     fi
50   fi
51 fi
52
53 if [ ! -d ${UEBLISTENERROOT}/logs ]
54 then
55   mkdir ${UEBLISTENERROOT}/logs
56 fi
57
58 for file in ${UEBLISTENERROOT}/lib/*.jar
59 do
60   LISTENERCLASSPATH=$LISTENERCLASSPATH:$file
61 done
62
63 ${JAVA} ${JAVA_OPTS} -Dlog4j.configuration=file:${UEBLISTENERROOT}/lib/log4j.properties -cp ${LISTENERCLASSPATH} com.att.sdnctl.dmaapclient.DmaapListener &
64
65
66 echo $! > $PIDFILE
67
68 echo "$LISTENER started!"
69 exit 0