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

Commit

Permalink
some more bash upgrade stuff
Browse files Browse the repository at this point in the history
Sam Kottler committed Sep 25, 2014
1 parent aff9b36 commit efc5c9e
Showing 3 changed files with 13 additions and 2 deletions.
3 changes: 2 additions & 1 deletion Berksfile.lock
Original file line number Diff line number Diff line change
@@ -287,7 +287,8 @@ GRAPH
sensu (= 1.0.0)
rubygems-ssh (0.0.5)
openssh (>= 0.0.0)
rubygems-utility (0.0.5)
rubygems-utility (0.0.6)
apt (>= 0.0.0)
runit (1.4.6)
build-essential (>= 0.0.0)
yum (< 3.0.0)
4 changes: 3 additions & 1 deletion cookbooks/rubygems-utility/metadata.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
name 'rubygems-utility'

version '0.0.5'
version '0.0.6'

depends 'apt'
8 changes: 8 additions & 0 deletions cookbooks/rubygems-utility/recipes/default.rb
Original file line number Diff line number Diff line change
@@ -9,9 +9,17 @@
package pkg
end

include_recipe 'apt'

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

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

0 comments on commit efc5c9e

Please sign in to comment.