Repository: ambari Updated Branches: refs/heads/trunk eb05baed5 -> c5cd33747
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/c5cd3374 Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/c5cd3374 Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/c5cd3374 Branch: refs/heads/trunk Commit: c5cd33747d666af037ea67ae03000d9501251aab Parents: eb05bae 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:57 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/c5cd3374/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 () {
