summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorgebele <gebele@in-silico.ch>2018-04-09 13:52:45 +0000
committergebele <gebele@in-silico.ch>2018-04-09 13:52:45 +0000
commit409c8a5a353235c91cbf965a885dd12da699d993 (patch)
treefebe01f5970f4087e6421fc282ee23a928351dc3 /bin
parentb101916876ce06d06633af2a3ac6a34bd6cb2762 (diff)
bumped versionv1.3.1
Diffstat (limited to 'bin')
-rwxr-xr-xbin/lazar-start.sh4
-rwxr-xr-xbin/lazar-stop.sh2
2 files changed, 3 insertions, 3 deletions
diff --git a/bin/lazar-start.sh b/bin/lazar-start.sh
index 9143d02..cf2af36 100755
--- a/bin/lazar-start.sh
+++ b/bin/lazar-start.sh
@@ -1,8 +1,8 @@
-#!/bin/sh
+#!/bin/bash
sudo mongod &
R CMD Rserve --vanilla &
LAZARPATH=$(gem path lazar-gui)
cd $LAZARPATH
-unicorn -c unicorn.rb -E production -D
+unicorn -c unicorn.rb -E production
exit 0
diff --git a/bin/lazar-stop.sh b/bin/lazar-stop.sh
index c311584..eea6815 100755
--- a/bin/lazar-stop.sh
+++ b/bin/lazar-stop.sh
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/bash
grep_lazar=`ps aux | grep -v grep | grep lazar-start`
grep_mongo=`ps aux | grep -v grep | grep mongod`
grep_rserve=`ps aux | grep -v grep | grep Rserve`