You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@knox.apache.org by kr...@apache.org on 2019/03/14 19:54:53 UTC

[knox] branch master updated: KNOX-1804 - Fix variable *_FOREGROUND_* defaults

This is an automated email from the ASF dual-hosted git repository.

krisden pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/knox.git


The following commit(s) were added to refs/heads/master by this push:
     new 75a540c  KNOX-1804 - Fix variable *_FOREGROUND_* defaults
75a540c is described below

commit 75a540c918969b478ad4986f5837106c4b63ece6
Author: Kevin Risden <kr...@apache.org>
AuthorDate: Thu Mar 14 15:53:58 2019 -0400

    KNOX-1804 - Fix variable *_FOREGROUND_* defaults
    
    Missing a single $ in the default value for `*_FOREGROUND_*` variables
    
    Signed-off-by: Kevin Risden <kr...@apache.org>
---
 gateway-release/home/bin/gateway.sh | 2 +-
 gateway-release/home/bin/ldap.sh    | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/gateway-release/home/bin/gateway.sh b/gateway-release/home/bin/gateway.sh
index d059274..141a0c8 100755
--- a/gateway-release/home/bin/gateway.sh
+++ b/gateway-release/home/bin/gateway.sh
@@ -70,7 +70,7 @@ APP_OUT_FILE="$APP_LOG_DIR/$APP_NAME.out"
 APP_ERR_FILE="$APP_LOG_DIR/$APP_NAME.err"
 
 DEFAULT_APP_RUNNING_IN_FOREGROUND="$GATEWAY_SERVER_RUN_IN_FOREGROUND"
-APP_RUNNING_IN_FOREGROUND=${KNOX_GATEWAY_RUNNING_IN_FOREGROUND:-DEFAULT_APP_RUNNING_IN_FOREGROUND}
+APP_RUNNING_IN_FOREGROUND=${KNOX_GATEWAY_RUNNING_IN_FOREGROUND:-$DEFAULT_APP_RUNNING_IN_FOREGROUND}
 
 APP_JAVA_OPTS="$APP_JAVA_LIB_PATH $APP_MEM_OPTS $APP_DBG_OPTS $APP_LOG_OPTS"
 
diff --git a/gateway-release/home/bin/ldap.sh b/gateway-release/home/bin/ldap.sh
index aac5c04..cea58f9 100755
--- a/gateway-release/home/bin/ldap.sh
+++ b/gateway-release/home/bin/ldap.sh
@@ -62,7 +62,7 @@ APP_OUT_FILE="$APP_LOG_DIR/$APP_NAME.out"
 APP_ERR_FILE="$APP_LOG_DIR/$APP_NAME.err"
 
 DEFAULT_APP_RUNNING_IN_FOREGROUND="$LDAP_SERVER_RUN_IN_FOREGROUND"
-APP_RUNNING_IN_FOREGROUND=${KNOX_LDAP_RUNNING_IN_FOREGROUND:-DEFAULT_APP_RUNNING_IN_FOREGROUND}
+APP_RUNNING_IN_FOREGROUND=${KNOX_LDAP_RUNNING_IN_FOREGROUND:-$DEFAULT_APP_RUNNING_IN_FOREGROUND}
 
 # JAVA options used by the JVM
 APP_JAVA_OPTS="$APP_MEM_OPTS $APP_DBG_OPTS $APP_LOG_OPTS"