Repository: bigtop Updated Branches: refs/heads/master 215940dcf -> c4b721127
BIGTOP-3090: provisioner failed on fedora-26 when deploying jdk The puppet recipe of jdk intends to setup cacerts link with pki/java/cacerts while jdk is not installed. This security failure will cause later bigtop components installation failure. Change-Id: Ib728cdf60db9feaddb3f65643ee2134158947254 Signed-off-by: Jun He <[email protected]> Signed-off-by: Evans Ye <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/bigtop/repo Commit: http://git-wip-us.apache.org/repos/asf/bigtop/commit/c4b72112 Tree: http://git-wip-us.apache.org/repos/asf/bigtop/tree/c4b72112 Diff: http://git-wip-us.apache.org/repos/asf/bigtop/diff/c4b72112 Branch: refs/heads/master Commit: c4b721127d28c76d96bf37c7314fef85ac6e33f2 Parents: 215940d Author: Jun He <[email protected]> Authored: Wed Oct 3 21:56:48 2018 +0800 Committer: Evans Ye <[email protected]> Committed: Thu Oct 4 13:14:10 2018 +0800 ---------------------------------------------------------------------- bigtop-deploy/puppet/manifests/jdk.pp | 6 ------ 1 file changed, 6 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/bigtop/blob/c4b72112/bigtop-deploy/puppet/manifests/jdk.pp ---------------------------------------------------------------------- diff --git a/bigtop-deploy/puppet/manifests/jdk.pp b/bigtop-deploy/puppet/manifests/jdk.pp index fc2eb4e..b52a93f 100644 --- a/bigtop-deploy/puppet/manifests/jdk.pp +++ b/bigtop-deploy/puppet/manifests/jdk.pp @@ -60,12 +60,6 @@ class jdk { ensure => present, noop => $jdk_preinstalled, } - 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 { 'jdk':
