You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@karaf.apache.org by "Jean-Baptiste Onofré (JIRA)" <ji...@apache.org> on 2015/04/21 22:16:59 UTC

[jira] [Resolved] (KARAF-3461) bin/karaf doesn't use the provided KARAF_HOME

     [ https://issues.apache.org/jira/browse/KARAF-3461?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Jean-Baptiste Onofré resolved KARAF-3461.
-----------------------------------------
    Resolution: Fixed

> bin/karaf doesn't use the provided KARAF_HOME
> ---------------------------------------------
>
>                 Key: KARAF-3461
>                 URL: https://issues.apache.org/jira/browse/KARAF-3461
>             Project: Karaf
>          Issue Type: Improvement
>          Components: karaf-core
>            Reporter: Jean-Baptiste Onofré
>            Assignee: Jean-Baptiste Onofré
>             Fix For: 2.4.2, 3.0.4, 4.0.0.M3
>
>
> Currently, if the user sets a KARAF_HOME env variable, Karaf doesn't use it and display a warning:
> {code}
> locateHome() {
>     if [ "x$KARAF_HOME" != "x" ]; then
>         warn "Ignoring predefined value for KARAF_HOME"
>     fi
>     # In POSIX shells, CDPATH may cause cd to write to stdout
>     (unset CDPATH) >/dev/null 2>&1 && unset CDPATH
>     KARAF_HOME=`cd "$DIRNAME/.."; pwd`
>     if [ ! -d "$KARAF_HOME" ]; then
>         die "KARAF_HOME is not valid: $KARAF_HOME"
>     fi
> }
> {code}
> This behaviour prevents to place karaf script in /usr/bin for instance (or we have to use a symlink).
> It's particulary interesting with docker.io images (where we can to place karaf script directly in /bin for instance).
> Actually, we should do something like:
> {code}
> locateHome() {
>     if [ "x$KARAF_HOME" = "x" ]; then
>       # In POSIX shells, CDPATH may cause cd to write to stdout
>     (unset CDPATH) >/dev/null 2>&1 && unset CDPATH
>       KARAF_HOME=`cd "$DIRNAME/.."; pwd`
>     fi
>     if [ ! -d "$KARAF_HOME" ]; then
>         die "KARAF_HOME is not valid: $KARAF_HOME"
>     fi
> }
> {code}
> With this change, if the user sets KARAF_HOME, we use it, else we "fallback" to define the KARAF_HOME relatively to DIRNAME.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)