summaryrefslogtreecommitdiff
path: root/services-install
blob: bee1719fcdbde4695242ca472f80bdbca1393f61 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#!/bin/bash

SELF=$(basename $0 -install)
[ "`id -u`" = "0" ] && echo "This script must be run as non-root." 1>&2 && exit 1

# Adjust ruby version here!
RUBY_NUM_VER="1.9.3-p194"

echo
echo "Welcome to service installation (<Return> to continue)."
read delete_me
echo
echo "Development installation: Have you added public ssh key to GitHub? (<Return> to continue)."
read delete_me


# check wd is root of service
DIR=`pwd`
if echo $DIR | grep "$SELF/bin" >/dev/null 2>&1 ; then cd ..; fi

# # # Boot the script

# load base config, helper funs, environment
OT_CONFIG_DIR="$HOME/.opentox"
! [ -f "$OT_CONFIG_DIR/config/install/config.sh" ] && echo "config.sh not found." 1>&2 && exit 1 || . $OT_CONFIG_DIR/config/install/config.sh
! [ -f "$OT_PREFIX/install/utils.sh" ] && echo "utils.sh not found." 1>&2 && exit 1 || . $OT_PREFIX/install/utils.sh
[ -f $OT_CONFIG_DIR/opentox-ui.sh ] && . $OT_CONFIG_DIR/opentox-ui.sh # should have been done by user already
RUBY_DIR="$HOME/.rbenv/versions/$RUBY_NUM_VER"


# # # Install

LOG="$OT_PREFIX/tmp/services.log"
check_utils "rbenv find"
echo
echo "Installation ('$LOG'):"
echo

[ "`$RBENV local 2>/dev/null`" = "$RUBY_NUM_VER" ] || install_ruby


for SERVICE in opentox-client opentox-server dataset algorithm; do
  install_ot_service
done
cd $DIR