installLabkey.sh 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. #!/bin/bash
  2. . $(dirname $0)/env.sh
  3. LABKEY=LabKey24.11.11-14-community
  4. if [ $# -gt 0 ] ;
  5. then
  6. case $1 in
  7. 24.11)
  8. LABKEY=LabKey24.11.11-14-community;;
  9. esac;
  10. fi;
  11. echo "Using $LABKEY";
  12. #config/application.settings are generic/complex enough that is part of the git container
  13. #and is not overwritten from source
  14. #one can find template in ${TGZ_PATH}, ${LABKEY}/config/application.settings (to copy it to temp, use)
  15. #tar xvzf ${TGZ_PATH} -C ~/temp --strip=2 ${LABKEY}/config/application.settings
  16. #set database
  17. if [ ! -d ${POSTGRES_DIR} ] ; then
  18. mkdir ${POSTGRES_DIR};
  19. fi;
  20. #set labkey-home
  21. if [ ! -d ${LABKEY_HOME} ] ;
  22. then
  23. mkdir ${LABKEY_HOME};
  24. fi;
  25. #link source jar
  26. if [ -f ${LABKEY_HOME}/labkeyServer.jar ] ;
  27. then
  28. rm ${LABKEY_HOME}/labkeyServer.jar;
  29. fi;
  30. TGZ_PATH=$HOME/software/packages/$LABKEY.tar.gz
  31. tar xvzf ${TGZ_PATH} -C ${LABKEY_HOME} --strip=1 ${LABKEY}/labkeyServer.jar
  32. #create helper directories
  33. if [ ! -d ${LABKEY_TMP} ] ;
  34. then
  35. mkdir ${LABKEY_TMP};
  36. fi;
  37. if [ ! -d ${LABKEY_LOGS} ] ;
  38. then
  39. mkdir ${LABKEY_LOGS};
  40. fi;
  41. exit 0;