summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorChristoph Helma <helma@in-silico.ch>2011-02-09 11:30:08 +0100
committerChristoph Helma <helma@in-silico.ch>2011-02-09 11:30:08 +0100
commit493dc4f0268a853c8b5488803b14efb5540163b5 (patch)
treea77d8d21b10cee1b03d038abbc2dc33a6fd4e2d0 /config
parent0871dbf4fc3f8e1083490197b7be7be2b5163d14 (diff)
initial import
Diffstat (limited to 'config')
-rw-r--r--config28
1 files changed, 28 insertions, 0 deletions
diff --git a/config b/config
new file mode 100644
index 0000000..20da21d
--- /dev/null
+++ b/config
@@ -0,0 +1,28 @@
+#!/bin/sh
+
+# Configuration options for OpenTox installations (sets shell variables for installation scripts)
+
+# Linux distribution (currently only debian)
+distribution=debian
+
+# Choose a root password for the MySQL database
+# Please insert the correct password if mysql-server is already installed
+mysql_root=opentox
+
+# Services to be installed
+# Options:
+# gem Installs only the opentox-ruby gem (useful, if you want to use external services with the opentox-ruby DSL)
+# all Installs all IST/ALU services (useful for local and server installations)
+install=all
+
+# Installation type
+# Options:
+# local local installation
+# server inter or intranet server
+#type=local
+type=server
+
+# Git branch of services
+# Options: master test development
+# "master" is the current stable version
+branch=master