compass-adapters/chef/cookbooks/nodejs/recipes/install_from_binary.rb
2013-12-12 01:33:01 +00:00

81 lines
2.8 KiB
Ruby

#
# Author:: Julian Wilde (jules@jules.com.au)
# Cookbook Name:: nodejs
# Recipe:: install_from_binary
#
# 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.
#
# Shamelessly borrowed from http://docs.opscode.com/dsl_recipe_method_platform.html
# Surely there's a more canonical way to get arch?
if node['kernel']['machine'] =~ /armv6l/
arch = "arm-pi" # assume a raspberry pi
else
arch = node['kernel']['machine'] =~ /x86_64/ ? "x64" : "x86"
end
distro_suffix = "-linux-#{arch}"
# package_stub is for example: "node-v0.8.20-linux-x64"
package_stub = "node-v#{node['nodejs']['version']}#{distro_suffix}"
nodejs_tar = "#{package_stub}.tar.gz"
expected_checksum = node['nodejs']["checksum_linux_#{arch}"]
nodejs_tar_path = nodejs_tar
if node['nodejs']['version'].split('.')[1].to_i >= 5
nodejs_tar_path = "v#{node['nodejs']['version']}/#{nodejs_tar_path}"
end
# Let the user override the source url in the attributes
nodejs_bin_url = "#{node['nodejs']['src_url']}/#{nodejs_tar_path}"
# Download it:
remote_file "/usr/local/src/#{nodejs_tar}" do
source nodejs_bin_url
checksum expected_checksum
mode 0644
action :create_if_missing
end
# Where we will install the binaries and libs to (normally /usr/local):
destination_dir = node['nodejs']['dir']
install_not_needed = File.exists?("#{node['nodejs']['dir']}/bin/node") && `#{node['nodejs']['dir']}/bin/node --version`.chomp == "v#{node['nodejs']['version']}"
# Verify the SHA sum of the downloaded file:
ruby_block "verify_sha_sum" do
block do
require 'digest/sha1'
calculated_sha256_hash = Digest::SHA256.file("/usr/local/src/#{nodejs_tar}")
if calculated_sha256_hash != expected_checksum
raise "SHA256 Hash of #{nodejs_tar} did not match! Expected #{expected_checksum} found #{calculated_sha256_hash}"
end
end
not_if { !node['nodejs']['check_sha'] or install_not_needed }
end
# One hopes that we can trust the contents of the node tarball not to overwrite anything it shouldn't!
execute "install package to system" do
command <<-EOF
tar xf /usr/local/src/#{nodejs_tar} \
--strip-components=1 --no-same-owner \
-C #{destination_dir} \
#{package_stub}/bin \
#{package_stub}/lib \
#{package_stub}/share
EOF
not_if { install_not_needed }
end