summaryrefslogtreecommitdiffstats
path: root/docker
diff options
context:
space:
mode:
authorTor Egge <Tor.Egge@yahoo-inc.com>2017-06-09 09:34:20 +0000
committerTor Egge <Tor.Egge@yahoo-inc.com>2017-06-09 09:34:20 +0000
commitcce629ed8de72993177e13e7ba7b5918295e32a3 (patch)
tree8c7138cd279a13d1409bd43bca0d758121afc0c4 /docker
parent89b7b95346eacff1dfedf03828de888043dfd940 (diff)
Change prefix from /opt/yahoo/vespa to /opt/vespa.
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 63029894936..dbfc9cc9777 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/yahoo/vespa
+chown -R vespa:vespa /opt/vespa
export VESPA_CONFIG_SERVERS=$(hostname)
-/opt/yahoo/vespa/bin/vespa-start-configserver
-/opt/yahoo/vespa/bin/vespa-start-services
+/opt/vespa/bin/vespa-start-configserver
+/opt/vespa/bin/vespa-start-services
# Print log forever
while true; do
- /opt/yahoo/vespa/bin/logfmt -f /opt/yahoo/vespa/logs/vespa/vespa.log
+ /opt/vespa/bin/logfmt -f /opt/vespa/logs/vespa/vespa.log
sleep 10
done