summaryrefslogtreecommitdiff
path: root/install
diff options
context:
space:
mode:
authorAndreas Maunz <andreas@maunz.de>2012-03-27 14:14:43 +0200
committerAndreas Maunz <andreas@maunz.de>2012-03-27 14:14:43 +0200
commiteed486a71faf10ce1ea32945f28367c6536e1a78 (patch)
treec0d79ddafc4984b4ebd2e51e583c2e4810548dc8 /install
parent75bb51309d2672c19586d4717e8cb7a85a010a6c (diff)
Modular version, loading helpers from base installation
Diffstat (limited to 'install')
-rwxr-xr-xinstall32
1 files changed, 20 insertions, 12 deletions
diff --git a/install b/install
index 62766a2..fa35845 100755
--- a/install
+++ b/install
@@ -8,15 +8,13 @@ if [ "$(id -u)" = "0" ]; then
fi
echo
-echo "Warning! If all IST services are stoppped press return, else <Ctrl+C> to stop installation."
-echo "Note: Your data will be backupped."
+echo "Warning! Hit <Return> If all services are stoppped, else <Ctrl+C>."
+echo "Note: CONFIG (~/.opentox) will be backupped."
read help_var
-echo
mkdir -p $OT_PREFIX/tmp/ >/dev/null 2>&1
DATE=`date +_%Y%m%d_%H_%M`
-echo
echo "Backups (if any)."
echo
backup_targets="$HOME/.opentox $HOME/opentox-ruby"
@@ -28,19 +26,28 @@ for bt in $backup_targets; do
fi
done
-LOG="$OT_PREFIX/tmp/`basename $0`-log.txt"
-. "./utils.sh"
+. ./utils.sh
+
+
+LOG="$OT_PREFIX/tmp/`basename $0`.log"
echo
-echo "Opentox-ruby installation."
+echo "Welcome to base installation for OpenTox compatible services on Ruby and Debian."
+echo "This will install:"
+echo "- Debian packages"
+echo "- OpenBabel (from source)."
+echo
+echo "IMPORTANT: press Ctrl+C to adjust config.sh first (<Return> to continue)."
+read delete_me
+echo
echo "You may need to give root password for some privileged actions right now and later:"
echo
cmd="sudo echo -n \"\"" && run_cmd "$cmd" "Acquire privileges"
-echo "Cleaning up $OT_PREFIX/tmp files."
-rm -rf $OT_PREFIX/tmp/openbabel* $OT_PREFIX/tmp/kernlab* $OT_PREFIX/tmp/ruby*
-
-. "./base-install.sh"
-. "./openbabel.sh"
+rm -rf $OT_PREFIX/tmp/openbabel* $OT_PREFIX/tmp/ruby*
+cmd="mkdir -p $OT_PREFIX/install && cp utils.sh $OT_PREFIX/install" && run_cmd "$cmd" "Install utils.sh to OT_PREFIX"
+cmd="mkdir -p $HOME/.opentox/config/install && cp config.sh $HOME/.opentox/config/install" && run_cmd "$cmd" "Install config.sh to CONFIG (~/.opentox)"
+. ./base-install.sh
+. ./openbabel.sh
echo
echo "Installation finished."
@@ -50,6 +57,7 @@ echo "IMPORTANT: How to configure your system:"
echo "IMPORTANT: a) Include '$OT_UI_CONF' in shell startup (e.g. ~/.bashrc)."
echo "IMPORTANT: b) Manually source '$OT_UI_CONF' every time."
echo "IMPORTANT: The command in both cases: '. $OT_UI_CONF'"
+echo "IMPORTANT: Your system is NOT configured right now."
echo
echo "Thank you for your attention."
echo