77 lines
2.3 KiB
Ruby
77 lines
2.3 KiB
Ruby
# Author:: Joshua Timberman (<joshua@opscode.com>)
|
|
# Cookbook Name:: java
|
|
# Recipe:: ibm
|
|
#
|
|
# Copyright 2013, Opscode, Inc.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
require 'uri'
|
|
|
|
source_url = node['java']['ibm']['url']
|
|
jdk_uri = ::URI.parse(source_url)
|
|
jdk_filename = ::File.basename(jdk_uri.path)
|
|
|
|
unless valid_ibm_jdk_uri?(source_url)
|
|
raise "You must set the attribute `node['java']['ibm']['url']` to a valid HTTP URI"
|
|
end
|
|
|
|
# "installable package" installer needs rpm on Ubuntu
|
|
if platform_family?('debian') && jdk_filename !~ /archive/
|
|
package "rpm" do
|
|
action :install
|
|
end
|
|
end
|
|
|
|
template "#{Chef::Config[:file_cache_path]}/installer.properties" do
|
|
source "ibm_jdk.installer.properties.erb"
|
|
only_if { node['java']['ibm']['accept_ibm_download_terms'] }
|
|
end
|
|
|
|
remote_file "#{Chef::Config[:file_cache_path]}/#{jdk_filename}" do
|
|
source source_url
|
|
mode 00755
|
|
if node['java']['ibm']['checksum']
|
|
checksum node['java']['ibm']['checksum']
|
|
action :create
|
|
else
|
|
action :create_if_missing
|
|
end
|
|
notifies :run, "execute[install-ibm-java]", :immediately
|
|
end
|
|
|
|
java_alternatives 'set-java-alternatives' do
|
|
java_location node['java']['java_home']
|
|
default node['java']['set_default']
|
|
case node['java']['jdk_version'].to_s
|
|
when "6"
|
|
bin_cmds node['java']['ibm']['6']['bin_cmds']
|
|
when "7"
|
|
bin_cmds node['java']['ibm']['7']['bin_cmds']
|
|
end
|
|
action :nothing
|
|
end
|
|
|
|
execute "install-ibm-java" do
|
|
cwd Chef::Config[:file_cache_path]
|
|
environment({
|
|
"_JAVA_OPTIONS" => "-Dlax.debug.level=3 -Dlax.debug.all=true",
|
|
"LAX_DEBUG" => "1"
|
|
})
|
|
command "./#{jdk_filename} -f ./installer.properties -i silent"
|
|
notifies :set, 'java_alternatives[set-java-alternatives]', :immediately
|
|
creates "#{node['java']['java_home']}/jre/bin/java"
|
|
end
|
|
|
|
include_recipe "java::set_java_home"
|