You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@knox.apache.org by km...@apache.org on 2014/03/14 20:23:20 UTC

git commit: KNOX-311: Parameters not passed to java properly by knoxcli.sh on Ubuntu.

Repository: knox
Updated Branches:
  refs/heads/master be8bd5e0e -> 31ac5c54f


KNOX-311: Parameters not passed to java properly by knoxcli.sh on Ubuntu.


Project: http://git-wip-us.apache.org/repos/asf/knox/repo
Commit: http://git-wip-us.apache.org/repos/asf/knox/commit/31ac5c54
Tree: http://git-wip-us.apache.org/repos/asf/knox/tree/31ac5c54
Diff: http://git-wip-us.apache.org/repos/asf/knox/diff/31ac5c54

Branch: refs/heads/master
Commit: 31ac5c54f4027a43c81c10ca9236b101db8b6448
Parents: be8bd5e
Author: Kevin Minder <ke...@hortonworks.com>
Authored: Fri Mar 14 15:23:14 2014 -0400
Committer: Kevin Minder <ke...@hortonworks.com>
Committed: Fri Mar 14 15:23:14 2014 -0400

----------------------------------------------------------------------
 gateway-release/home/bin/knoxcli.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/knox/blob/31ac5c54/gateway-release/home/bin/knoxcli.sh
----------------------------------------------------------------------
diff --git a/gateway-release/home/bin/knoxcli.sh b/gateway-release/home/bin/knoxcli.sh
index 9629a24..d01aa4e 100755
--- a/gateway-release/home/bin/knoxcli.sh
+++ b/gateway-release/home/bin/knoxcli.sh
@@ -58,7 +58,7 @@ function main {
    #printf "Starting $APP_LABEL \n"
    #printf "$@"
    
-   exec $JAVA $APP_MEM_OPTS $APP_DBG_OPTS $APP_LOG_OPTS -jar $APP_JAR "$@" || exit 1
+   $JAVA $APP_MEM_OPTS $APP_DBG_OPTS $APP_LOG_OPTS -jar $APP_JAR $@ || exit 1
 
    return 0
 }