You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

postgres.sh 370B

123456789101112
  1. #!/usr/bin/env bash
  2. set -euo pipefail
  3. source scripts/property_utils.sh
  4. SQ_HOME=$1
  5. echo "configuring postgres"
  6. set_property sonar.jdbc.url jdbc:postgresql://localhost:5432/sonarqube "$SQ_HOME/conf/sonar.properties"
  7. set_property sonar.jdbc.username sonarqube "$SQ_HOME/conf/sonar.properties"
  8. set_property sonar.jdbc.password sonarqube "$SQ_HOME/conf/sonar.properties"