You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@bigtop.apache.org by of...@apache.org on 2017/05/03 19:00:11 UTC

bigtop git commit: BIGTOP-2755: Gradle needs cacerts file in place on fedora

Repository: bigtop
Updated Branches:
  refs/heads/master 914d2f9e9 -> 42eeb059e


BIGTOP-2755: Gradle needs cacerts file in place on fedora


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

Branch: refs/heads/master
Commit: 42eeb059e502e6e34a2b33ec582ed244985cd3cc
Parents: 914d2f9
Author: Olaf Flebbe <of...@oflebbe.de>
Authored: Mon May 1 21:18:13 2017 +0200
Committer: Olaf Flebbe <of...@oflebbe.de>
Committed: Wed May 3 20:59:56 2017 +0200

----------------------------------------------------------------------
 bigtop_toolchain/manifests/jdk.pp | 6 ++++++
 1 file changed, 6 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/bigtop/blob/42eeb059/bigtop_toolchain/manifests/jdk.pp
----------------------------------------------------------------------
diff --git a/bigtop_toolchain/manifests/jdk.pp b/bigtop_toolchain/manifests/jdk.pp
index b15539d..6ba3218 100644
--- a/bigtop_toolchain/manifests/jdk.pp
+++ b/bigtop_toolchain/manifests/jdk.pp
@@ -42,6 +42,12 @@ class bigtop_toolchain::jdk {
       package { 'java-1.8.0-openjdk-devel' :
         ensure => present
       }
+      if ($::operatingsystem == "Fedora") {
+        file { '/usr/lib/jvm/java-1.8.0-openjdk/jre/lib/security/cacerts':
+          ensure => 'link',
+          target => '/etc/pki/java/cacerts'
+        }
+      }
     }
     /OpenSuSE/: {
       package { 'java-1_8_0-openjdk-devel' :