summaryrefslogtreecommitdiffstats
path: root/vespabase
diff options
context:
space:
mode:
authorGeir Storli <geirstorli@yahoo.no>2017-07-07 15:02:20 +0200
committerGitHub <noreply@github.com>2017-07-07 15:02:20 +0200
commitb29ba0b8a809f50f93fa497dc719b6a70658c483 (patch)
tree8a7f0a1bc09915c1440aeb4f48c0a127b1648c94 /vespabase
parent2793b35d6886dc35b01779b43db7e281e1502dcb (diff)
Revert "Remove fallback setting of VESPA_USER, it should already be set from"
Diffstat (limited to 'vespabase')
-rwxr-xr-xvespabase/src/common-env.sh6
1 files changed, 5 insertions, 1 deletions
diff --git a/vespabase/src/common-env.sh b/vespabase/src/common-env.sh
index dee3b1c785d..39107ae5500 100755
--- a/vespabase/src/common-env.sh
+++ b/vespabase/src/common-env.sh
@@ -77,7 +77,6 @@ get_var() {
populate_environment () {
# these are the variables we want while running vespa:
# VESPA_HOME - where is Vespa installed
- # VESPA_USER - The user running the vespa programs
# VESPA_CONFIGSERVERS - the host (or list of host) where a configserver runs
# VESPA_CONFIG_SOURCES - possible override as the first place to get config
@@ -101,6 +100,11 @@ populate_environment () {
read_conf_file
consider_fallback ROOT ${VESPA_HOME%/}
+ if id yahoo >/dev/null 2>&1 ; then
+ consider_fallback VESPA_USER "yahoo"
+ elif id vespa >/dev/null 2>&1 ; then
+ consider_fallback VESPA_USER "vespa"
+ fi
}
populate_environment