Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

stop.sh 286B

1234567891011121314
  1. #!/bin/bash
  2. # Shortcut to stop server. It must be already built.
  3. if [[ "$OSTYPE" == "darwin"* ]]; then
  4. OS='macosx-universal-64'
  5. else
  6. OS='linux-x86-64'
  7. fi
  8. SONAR_SH=sonar-application/build/distributions/sonarqube-*/bin/$OS/sonar.sh
  9. if [ -f $SONAR_SH ]; then
  10. sh $SONAR_SH stop
  11. fi