summaryrefslogtreecommitdiff
path: root/install_kbas_server.sh
diff options
context:
space:
mode:
authorPatrick Darley <patrick.darley@codethink.co.uk>2015-09-28 14:01:27 +0000
committerPatrick Darley <patrick.darley@codethink.co.uk>2015-10-01 11:01:39 +0000
commit8c27660ffafaa5156de2bed43327d80298511832 (patch)
tree4b34849ea5d3c2a359900481e837d31b3b2c1e52 /install_kbas_server.sh
parentb6434da9d1c0676a5b525f8fac700b41cfd7a1db (diff)
downloadbuildslave-scripts-8c27660ffafaa5156de2bed43327d80298511832.tar.gz
Prep isnt what its doing really, more installing
Diffstat (limited to 'install_kbas_server.sh')
-rwxr-xr-xinstall_kbas_server.sh26
1 files changed, 26 insertions, 0 deletions
diff --git a/install_kbas_server.sh b/install_kbas_server.sh
new file mode 100755
index 0000000..719ad85
--- /dev/null
+++ b/install_kbas_server.sh
@@ -0,0 +1,26 @@
+#!/bin/sh
+
+# Script to set up yum-y or apt-y machine for kbas use
+
+if [ -x /usr/bin/apt ]; then
+ apt-get install -y gawk python-pip
+elif [ -x /usr/bin/yum ]; then
+ yum install -y gawk python-pip
+else
+ echo "Unsuported package manager, try apt or yum."
+ exit 1
+fi
+
+# TODO: Check if this is all that a cache server will need. unsure as running
+# the cache and ybd on the same machine currently
+pip install bottle
+
+# TODO: clone a copy of byd to this user and check out a necessary version.
+# Then copy in the kbas config from buildscripts
+
+
+# Now install the init script for the kbas server and start it
+cp init_scripts/artifact_server /etc/init.d/.
+chkconfig --add artifact_server
+
+/etc/init.d/artifact_server start