summaryrefslogtreecommitdiffstats
path: root/docker/run-vespa-internal.sh
diff options
context:
space:
mode:
Diffstat (limited to 'docker/run-vespa-internal.sh')
-rwxr-xr-xdocker/run-vespa-internal.sh25
1 files changed, 25 insertions, 0 deletions
diff --git a/docker/run-vespa-internal.sh b/docker/run-vespa-internal.sh
new file mode 100755
index 00000000000..3918f7881dd
--- /dev/null
+++ b/docker/run-vespa-internal.sh
@@ -0,0 +1,25 @@
+#!/bin/bash
+set -e
+
+if [ $# -ne 1 ]; then
+ echo "Usage: $0 <vespa version>"
+ echo "This script should not be called manually."
+ exit 1
+fi
+
+DIR=$(cd $(dirname "${BASH_SOURCE[0]}") && pwd)
+cd $DIR
+
+VESPA_VERSION=$1
+
+rpm -i "vespa-${VESPA_VERSION}-1.el7.centos.x86_64.rpm"
+rpm -i "vespa-debuginfo-${VESPA_VERSION}-1.el7.centos.x86_64.rpm"
+
+# Workaround until we figure out why rpm does not set the ownership.
+chown -R vespa:vespa /opt/vespa
+
+/opt/vespa/bin/vespa-start-configserver
+/opt/vespa/bin/vespa-start-services
+
+# Sleep until killed
+tail -f /dev/null