[ 
https://issues.apache.org/jira/browse/HADOOP-8386?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13465921#comment-13465921
 ] 

Christopher Berner commented on HADOOP-8386:
--------------------------------------------

I didn't run into any other scripts that had this issue, but yes it would need 
to be handled everywhere as far as I can tell. I think another option (besides 
explicitly ignoring the output) would be to just add "unset CDPATH" at the 
beginning of the script. I've used that in scripts that had issues with 
environment variables before, and it works just fine.
                
> hadoop script doesn't work if 'cd' prints to stdout (default behavior in 
> Ubuntu)
> --------------------------------------------------------------------------------
>
>                 Key: HADOOP-8386
>                 URL: https://issues.apache.org/jira/browse/HADOOP-8386
>             Project: Hadoop Common
>          Issue Type: Bug
>          Components: scripts
>    Affects Versions: 1.0.2
>         Environment: Ubuntu
>            Reporter: Christopher Berner
>         Attachments: hadoop.diff
>
>
> if the 'hadoop' script is run as 'bin/hadoop' on a distro where the 'cd' 
> command prints to stdout, the script will fail due to this line: 'bin=`cd 
> "$bin"; pwd`'
> Workaround: execute from the bin/ directory as './hadoop'
> Fix: change that line to 'bin=`cd "$bin" > /dev/null; pwd`'

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

Reply via email to