Skip to content
This repository has been archived by the owner on Jul 11, 2020. It is now read-only.
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: rubygems/rubygems-chef
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 8dd2aca759ca
Choose a base ref
...
head repository: rubygems/rubygems-chef
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 997b0ffdf577
Choose a head ref
  • 2 commits
  • 3 files changed
  • 1 contributor

Commits on Feb 16, 2015

  1. Copy the full SHA
    498aa10 View commit details
  2. bump rubygems-utility

    Sam Kottler committed Feb 16, 2015
    Copy the full SHA
    997b0ff View commit details
Showing with 6 additions and 16 deletions.
  1. +1 −1 Berksfile.lock
  2. +1 −1 cookbooks/rubygems-utility/metadata.rb
  3. +4 −14 cookbooks/rubygems-utility/recipes/default.rb
2 changes: 1 addition & 1 deletion Berksfile.lock
Original file line number Diff line number Diff line change
@@ -334,7 +334,7 @@ GRAPH
openssh (>= 0.0.0)
rubygems-stat-update (0.0.1)
runit (>= 0.0.0)
rubygems-utility (0.0.8)
rubygems-utility (0.0.9)
apt (>= 0.0.0)
runit (1.4.6)
build-essential (>= 0.0.0)
2 changes: 1 addition & 1 deletion cookbooks/rubygems-utility/metadata.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name 'rubygems-utility'

version '0.0.8'
version '0.0.9'

depends 'apt'
18 changes: 4 additions & 14 deletions cookbooks/rubygems-utility/recipes/default.rb
Original file line number Diff line number Diff line change
@@ -3,23 +3,13 @@
# Recipe:: default
#

# This needs to get run before we install any packages because the apt cache
# might be out of date and the default apt recipe will update it.
include_recipe 'apt'

packages = data_bag_item('packages', 'base')['packages']

packages.each do |pkg|
package pkg
end

include_recipe 'apt'

package 'bash' do
case node['lsb']['codename']
when 'trusty'
version '4.3-7ubuntu1.4'
end
notifies :run, 'execute[run-ldconfig]', :immediately
end

execute 'run-ldconfig' do
command '/sbin/ldconfig'
action :nothing
end