summaryrefslogtreecommitdiffstats
path: root/docker
diff options
context:
space:
mode:
authorArnstein Ressem <aressem@yahoo-inc.com>2016-06-22 20:55:29 +0200
committerArnstein Ressem <aressem@yahoo-inc.com>2016-06-22 20:55:29 +0200
commitc8ca77d2485bc110fa62e3d4bd0b8a0c49b72083 (patch)
tree1d4560a05382fe01f78607105418c3b732730278 /docker
parent646a7f9ef38e06031f7cf60eff8158f731dfbd6b (diff)
Calling logfmt inside this script as part of docker run causes error. Reverting to tail.
Diffstat (limited to 'docker')
-rwxr-xr-xdocker/run-vespa-internal.sh7
1 files changed, 3 insertions, 4 deletions
diff --git a/docker/run-vespa-internal.sh b/docker/run-vespa-internal.sh
index 5cbeb8ac2f8..8ebaac8fa84 100755
--- a/docker/run-vespa-internal.sh
+++ b/docker/run-vespa-internal.sh
@@ -12,8 +12,7 @@ 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"
+rpm -i "vespa*-${VESPA_VERSION}-*.rpm"
# Workaround until we figure out why rpm does not set the ownership.
chown -R vespa:vespa /opt/vespa
@@ -21,5 +20,5 @@ chown -R vespa:vespa /opt/vespa
/opt/vespa/bin/vespa-start-configserver
/opt/vespa/bin/vespa-start-services
-# Output log until killed
-/opt/vespa/bin/logfmt -f
+# Sleep forever
+tail -f /dev/null