common_run.sh 186 B

12345678910111213
  1. #!/bin/bash
  2. if [[ $LOGDIR == *postgres* ]] ; then
  3. DBTYPE=postgresql
  4. else
  5. DBTYPE=mysql
  6. fi
  7. export DBTYPE
  8. if [[ $LOGDIR == *jruby* ]] ; then
  9. . $(dirname $0)/config/java_tune.sh
  10. fi