Repository: ambari Updated Branches: refs/heads/branch-2.4 e505f0b24 -> 5632e990b
AMBARI-17558 Zeppelin: service install failure on Suse due to bash error. (Renjith Kamath via dipayanb) Project: http://git-wip-us.apache.org/repos/asf/ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/5632e990 Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/5632e990 Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/5632e990 Branch: refs/heads/branch-2.4 Commit: 5632e990b534498758b7a56a5c67e107565dc356 Parents: e505f0b Author: Dipayan Bhowmick <[email protected]> Authored: Thu Jul 7 01:45:56 2016 +0530 Committer: Dipayan Bhowmick <[email protected]> Committed: Thu Jul 7 01:46:24 2016 +0530 ---------------------------------------------------------------------- .../ZEPPELIN/0.6.0.2.5/package/scripts/setup_snapshot.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ambari/blob/5632e990/ambari-server/src/main/resources/common-services/ZEPPELIN/0.6.0.2.5/package/scripts/setup_snapshot.sh ---------------------------------------------------------------------- diff --git a/ambari-server/src/main/resources/common-services/ZEPPELIN/0.6.0.2.5/package/scripts/setup_snapshot.sh b/ambari-server/src/main/resources/common-services/ZEPPELIN/0.6.0.2.5/package/scripts/setup_snapshot.sh index 8612d64..891fb29 100644 --- a/ambari-server/src/main/resources/common-services/ZEPPELIN/0.6.0.2.5/package/scripts/setup_snapshot.sh +++ b/ambari-server/src/main/resources/common-services/ZEPPELIN/0.6.0.2.5/package/scripts/setup_snapshot.sh @@ -41,7 +41,7 @@ export SETUP_VIEW=$7 export PACKAGE_DIR=$8 export java64_home=$9 -SETUP_VIEW=${SETUP_VIEW,,} +SETUP_VIEW=`awk '{ print tolower($0) }' <<< "$SETUP_VIEW"` echo "SETUP_VIEW is $SETUP_VIEW" SetupZeppelin () {
