summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordavor <vorgrimmlerdavid@gmx.de>2012-09-12 17:28:06 +0300
committerdavor <vorgrimmlerdavid@gmx.de>2012-09-12 17:28:06 +0300
commit3059bc6d961d8280cc62f670e6d6b88cfae93bc7 (patch)
tree20269b73668bf6f296e77015ae485de94d02ef2b
parent57c2739c77c1099fd089ba39089450164cd6bfa1 (diff)
Added silent parameter.
-rw-r--r--_posts/2012-08-09-install-opentox-development-environment.md9
1 files changed, 5 insertions, 4 deletions
diff --git a/_posts/2012-08-09-install-opentox-development-environment.md b/_posts/2012-08-09-install-opentox-development-environment.md
index aa84599..95fa154 100644
--- a/_posts/2012-08-09-install-opentox-development-environment.md
+++ b/_posts/2012-08-09-install-opentox-development-environment.md
@@ -53,7 +53,7 @@ Download, configure and execute the installer.
cd $HOME/install
git checkout development
# First check config.sh with your favorite editor
- ./install
+ ./install silent
This installation script will prepare your system for the use of `opentox` web services, including installing necessary dependencies, `opentox` config, `raptor`, `rasqal`, `rbenv`, `ruby` and `4store`.
@@ -78,9 +78,9 @@ Next opentox-client and opentox-server will be downloaded and installed.
git checkout migration 2>/dev/null
done
cd $OT_PREFIX/opentox-client/bin
- ./opentox-client-install
+ ./opentox-client-install silent
cd $OT_PREFIX/opentox-server/bin
- ./opentox-server-install
+ ./opentox-server-install silent
OpenTox services(algorithm compound dataset feature task opentox-test) and tests will be downloaded and installed.
@@ -91,9 +91,10 @@ OpenTox services(algorithm compound dataset feature task opentox-test) and tests
git checkout migration 2>/dev/null
if [ -f $OT_PREFIX/$f/bin/$f-install ]; then
cd $OT_PREFIX/$f/bin
- ./$f-install
+ ./$f-install silent
fi
done
+ notify
At this point `opentox` web services have been downloaded, installed and configured.