Sha256: fdfa815c3d6886d22be3d5e0122f0aceb7b7c0a88d1e7a9df1f538af2f8eb488
Contents?: true
Size: 1.9 KB
Versions: 6
Compression:
Stored size: 1.9 KB
Contents
# # Author:: Joshua Timberman (<joshua@opscode.com>) # Cookbook Name:: yum # Recipe:: epel # # Copyright:: Copyright (c) 2011 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. if platform?("amazon") # Enable the amazon-provided epel repository execute "enable-epel-repository" do command "yum-config-manager --quiet --enable epel" end else major = node['platform_version'].to_i epel = node['yum']['epel_release'] if node['kernel']['machine'] == "i686" rpm_arch = "i386" else rpm_arch = node['kernel']['machine'] end # If rpm installation from a URL supported 302's, we'd just use that. # Instead, we get to remote_file then rpm_package. remote_file "#{Chef::Config[:file_cache_path]}/epel-release-#{epel}.noarch.rpm" do source "http://dl.fedoraproject.org/pub/epel/#{major}/#{rpm_arch}/epel-release-#{epel}.noarch.rpm" not_if "rpm -qa | egrep -qx 'epel-release-#{epel}(|.noarch)'" notifies :install, "rpm_package[epel-release]", :immediately retries 5 # We may be redirected to a FTP URL, CHEF-1031. end rpm_package "epel-release" do source "#{Chef::Config[:file_cache_path]}/epel-release-#{epel}.noarch.rpm" only_if {::File.exists?("#{Chef::Config[:file_cache_path]}/epel-release-#{epel}.noarch.rpm")} action :nothing end file "epel-release-cleanup" do path "#{Chef::Config[:file_cache_path]}/epel-release-#{epel}.noarch.rpm" action :delete end end
Version data entries
6 entries across 6 versions & 1 rubygems