You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@bigtop.apache.org by ev...@apache.org on 2017/05/15 12:59:38 UTC

bigtop git commit: BIGTOP-2767. Auto detect repo does not need OS code name since 1.2.0

Repository: bigtop
Updated Branches:
  refs/heads/master fb081bb13 -> 4aacad55b


BIGTOP-2767. Auto detect repo does not need OS code name since 1.2.0


Project: http://git-wip-us.apache.org/repos/asf/bigtop/repo
Commit: http://git-wip-us.apache.org/repos/asf/bigtop/commit/4aacad55
Tree: http://git-wip-us.apache.org/repos/asf/bigtop/tree/4aacad55
Diff: http://git-wip-us.apache.org/repos/asf/bigtop/diff/4aacad55

Branch: refs/heads/master
Commit: 4aacad55bcac27553f2ded2d2074b467d78484a9
Parents: fb081bb
Author: Evans Ye <ev...@apache.org>
Authored: Sun May 14 04:49:47 2017 +0800
Committer: Evans Ye <ev...@apache.org>
Committed: Mon May 15 05:59:36 2017 -0700

----------------------------------------------------------------------
 docker/sandbox/sandbox-env.sh | 9 ---------
 1 file changed, 9 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/bigtop/blob/4aacad55/docker/sandbox/sandbox-env.sh
----------------------------------------------------------------------
diff --git a/docker/sandbox/sandbox-env.sh b/docker/sandbox/sandbox-env.sh
index d765fe3..7e367e1 100644
--- a/docker/sandbox/sandbox-env.sh
+++ b/docker/sandbox/sandbox-env.sh
@@ -28,15 +28,6 @@ RPM_JDK=java-1.8.0-openjdk-devel.x86_64
 
 DEBS=( \
     debian-8 \
-    ubuntu-14.04 \
     ubuntu-16.04 \
 )
 DEB_JDK=openjdk-8-jdk
-
-OS_TO_CODE_NAME() {
-    case $1 in
-        "ubuntu-14.04") OS_WITH_CODE_NAME="ubuntu-trusty" ;;
-        "ubuntu-16.04") OS_WITH_CODE_NAME="ubuntu-xenial" ;;
-    esac
-    echo $OS_WITH_CODE_NAME
-}