summaryrefslogtreecommitdiffstats
path: root/docker
diff options
context:
space:
mode:
authorArnstein Ressem <aressem@gmail.com>2016-09-14 23:09:24 +0200
committerVegard Sjonfjell <vegardsjo@gmail.com>2016-09-14 23:09:24 +0200
commit40a0c95e607ed054d3fca3c2d8ca95b134a78634 (patch)
tree870e971dc46f3b030beb9fc15661e9384be7f398 /docker
parent7aac55e577fb431b0ac3cf461fff770b63b0d51d (diff)
/opt/vespa -> /opt/yahoo/vespa (#648)
Diffstat (limited to 'docker')
-rwxr-xr-xdocker/run-vespa-internal.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/docker/run-vespa-internal.sh b/docker/run-vespa-internal.sh
index dbfc9cc9777..63029894936 100755
--- a/docker/run-vespa-internal.sh
+++ b/docker/run-vespa-internal.sh
@@ -15,15 +15,15 @@ VESPA_VERSION=$1
rpm -i "vespa*-${VESPA_VERSION}-*.rpm"
# Workaround until we figure out why rpm does not set the ownership.
-chown -R vespa:vespa /opt/vespa
+chown -R vespa:vespa /opt/yahoo/vespa
export VESPA_CONFIG_SERVERS=$(hostname)
-/opt/vespa/bin/vespa-start-configserver
-/opt/vespa/bin/vespa-start-services
+/opt/yahoo/vespa/bin/vespa-start-configserver
+/opt/yahoo/vespa/bin/vespa-start-services
# Print log forever
while true; do
- /opt/vespa/bin/logfmt -f /opt/vespa/logs/vespa/vespa.log
+ /opt/yahoo/vespa/bin/logfmt -f /opt/yahoo/vespa/logs/vespa/vespa.log
sleep 10
done