Skip to content

Commit

Permalink
Fix yum 3.0.0 issues
Browse files Browse the repository at this point in the history
Yum 3.0.0 introduced gpgchecking=1 by default.  Since the sensu packages are unsigned, this did not work.
  • Loading branch information
roy.tewalt committed Dec 17, 2013
1 parent b74625a commit 97f7126
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions recipes/_linux.rb
Expand Up @@ -44,6 +44,7 @@
description "sensu monitoring"
repo = node.sensu.use_unstable_repo ? "yum-unstable" : "yum"
url "http://repos.sensuapp.org/#{repo}/el/#{node['platform_version'].to_i}/$basearch/"
gpgcheck false
action :add
end
when "fedora"
Expand All @@ -61,6 +62,7 @@
description "sensu monitoring"
repo = node.sensu.use_unstable_repo ? "yum-unstable" : "yum"
url "http://repos.sensuapp.org/#{repo}/el/#{rhel_version_equivalent}/$basearch/"
gpgcheck false
action :add
end
end
Expand Down

0 comments on commit 97f7126

Please sign in to comment.