IMPALA-4636: Add support for SLES12 for Kudu integration Enables SLES12 support for Kudu. Assumes that the toolchain Kudu contains a SLES12 build.
Change-Id: I2ae6da393df8bf6658a7dbf4def7d403cdc83397 Reviewed-on: http://gerrit.cloudera.org:8080/5463 Reviewed-by: Matthew Jacobs <[email protected]> Tested-by: Internal Jenkins Project: http://git-wip-us.apache.org/repos/asf/incubator-impala/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-impala/commit/619bf264 Tree: http://git-wip-us.apache.org/repos/asf/incubator-impala/tree/619bf264 Diff: http://git-wip-us.apache.org/repos/asf/incubator-impala/diff/619bf264 Branch: refs/heads/hadoop-next Commit: 619bf26435a18da37417a47df78adc06ad07bc75 Parents: 40c7c52 Author: Matthew Jacobs <[email protected]> Authored: Sat Dec 10 10:06:30 2016 -0800 Committer: Internal Jenkins <[email protected]> Committed: Tue Dec 13 20:40:56 2016 +0000 ---------------------------------------------------------------------- bin/impala-config.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-impala/blob/619bf264/bin/impala-config.sh ---------------------------------------------------------------------- diff --git a/bin/impala-config.sh b/bin/impala-config.sh index 6ce062b..aad231c 100755 --- a/bin/impala-config.sh +++ b/bin/impala-config.sh @@ -141,7 +141,7 @@ if [[ -z "${KUDU_IS_SUPPORTED-}" ]]; then # Remove spaces, trim minor versions, and convert to lowercase. DISTRO_VERSION="$(tr -d ' \n' <<< "$DISTRO_VERSION" | cut -d. -f1 | tr "A-Z" "a-z")" case "$DISTRO_VERSION" in - centos6 | centos7 | debian7 | debian8 | ubuntu* ) + centos6 | centos7 | debian7 | debian8 | sles12 | ubuntu* ) KUDU_IS_SUPPORTED=true;; esac fi
