sonarqube/start.sh

37 rindas
986 B
Bash

#!/bin/bash
###############################
# usage: use -d option to enable remote debugging of the web server on port 5005
###############################
2011-04-19 17:36:14 +02:00
if [[ "$OSTYPE" == "darwin"* ]]; then
OS='macosx-universal-64'
SED_DISABLE_BACKUP=" ''"
else
OS='linux-x86-64'
SED_DISABLE_BACKUP=""
fi
ls sonar-application/target/sonarqube-*.zip 1> /dev/null 2>&1
if [ "$?" != "0" ]; then
2014-05-05 13:04:17 +02:00
echo 'Sources are not built'
./build.sh
2014-05-05 13:04:17 +02:00
fi
2014-05-01 21:07:36 +02:00
cd sonar-application/target/
ls sonarqube-*/bin/$OS/sonar.sh 1> /dev/null 2>&1
if [ "$?" != "0" ]; then
2014-05-05 13:04:17 +02:00
unzip sonarqube-*.zip
fi
2014-05-05 10:08:28 +02:00
cd sonarqube-*
if [ "$1" = "-d" ]; then
echo "enabling debug in conf/sonar.properties, listening on port 5005"
sed -i $SED_DISABLE_BACKUP '/javaAdditionalOpts/d' conf/sonar.properties
echo "" >> conf/sonar.properties
echo "sonar.web.javaAdditionalOpts=-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=5005" >> conf/sonar.properties
fi
bin/$OS/sonar.sh restart
sleep 1
tail -100f logs/sonar.log