HDFS-7755. httpfs shell code has hardcoded path to bash (Dmitry Sivachenko via aw)
Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/7d732027 Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/7d732027 Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/7d732027 Branch: refs/heads/YARN-2928 Commit: 7d73202734e79beaa2db34d6b811beba7b34ee87 Parents: fcad031 Author: Allen Wittenauer <[email protected]> Authored: Mon Feb 9 13:05:14 2015 -0800 Committer: Allen Wittenauer <[email protected]> Committed: Mon Feb 9 13:05:14 2015 -0800 ---------------------------------------------------------------------- .../hadoop-hdfs-httpfs/src/main/libexec/httpfs-config.sh | 2 +- hadoop-hdfs-project/hadoop-hdfs-httpfs/src/main/sbin/httpfs.sh | 2 +- hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt | 3 +++ 3 files changed, 5 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hadoop/blob/7d732027/hadoop-hdfs-project/hadoop-hdfs-httpfs/src/main/libexec/httpfs-config.sh ---------------------------------------------------------------------- diff --git a/hadoop-hdfs-project/hadoop-hdfs-httpfs/src/main/libexec/httpfs-config.sh b/hadoop-hdfs-project/hadoop-hdfs-httpfs/src/main/libexec/httpfs-config.sh index a2fe1c2..d4db28f 100644 --- a/hadoop-hdfs-project/hadoop-hdfs-httpfs/src/main/libexec/httpfs-config.sh +++ b/hadoop-hdfs-project/hadoop-hdfs-httpfs/src/main/libexec/httpfs-config.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. http://git-wip-us.apache.org/repos/asf/hadoop/blob/7d732027/hadoop-hdfs-project/hadoop-hdfs-httpfs/src/main/sbin/httpfs.sh ---------------------------------------------------------------------- diff --git a/hadoop-hdfs-project/hadoop-hdfs-httpfs/src/main/sbin/httpfs.sh b/hadoop-hdfs-project/hadoop-hdfs-httpfs/src/main/sbin/httpfs.sh index a593b67..65903dc 100644 --- a/hadoop-hdfs-project/hadoop-hdfs-httpfs/src/main/sbin/httpfs.sh +++ b/hadoop-hdfs-project/hadoop-hdfs-httpfs/src/main/sbin/httpfs.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. http://git-wip-us.apache.org/repos/asf/hadoop/blob/7d732027/hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt ---------------------------------------------------------------------- diff --git a/hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt b/hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt index 74474ee..fe19a28 100644 --- a/hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt +++ b/hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt @@ -293,6 +293,9 @@ Trunk (Unreleased) HDFS-7669. HDFS Design Doc references commands that no longer exist. (Brahma Reddy Battula via aw) + HDFS-7755. httpfs shell code has hardcoded path to bash (Dmitry + Sivachenko via aw) + Release 2.7.0 - UNRELEASED INCOMPATIBLE CHANGES
