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 2017/03/23 12:59:41 UTC

[jira] [Updated] (KARAF-5034) readlink not found on HP-UX

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

Jean-Baptiste Onofré updated KARAF-5034:
----------------------------------------
    Summary: readlink not found on HP-UX  (was: readlink not fund on HP-UX)

> readlink not found on HP-UX
> ---------------------------
>
>                 Key: KARAF-5034
>                 URL: https://issues.apache.org/jira/browse/KARAF-5034
>             Project: Karaf
>          Issue Type: Bug
>          Components: karaf-core
>    Affects Versions: 3.0.0
>         Environment: HP-UX
>            Reporter: Terrien Jean-Yves
>            Assignee: Jean-Baptiste Onofré
>
> fail to start karaf readlink not found on HP-UX
> solved by addind this code  on scripts
> {code}
> if ["" -eq $(whence readlink)]
> then
>   DIRNAME=$(dirname "$0")
>   PROGNAME=$(basename "$0")
> else
>   REALNAME=$(readlink -e "$0" > /dev/null 2>&1)
>   if [ $? != 0 ]; then
>       REALNAME=$0
>   fi
>   DIRNAME=$(dirname "$REALNAME")
>   PROGNAME=$(basename "$REALNAME")
> fi
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)