Skip to content

Commit

Permalink
Merge pull request #14 from jonlives/patch-1
Browse files Browse the repository at this point in the history
Fix invalid repo generation on debian
  • Loading branch information
tmonk42 committed Oct 20, 2015
2 parents ffb012a + f934368 commit 6a44af2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion recipes/install.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
include_recipe 'apt'
apt_repository 'grafana' do
repo = node['grafana']['use_unstable_repo'] ? 'grafana/testing' : 'grafana/stable'
uri "#{node['grafana']['repo_url']}/#{repo}/debian wheezy main"
uri "#{node['grafana']['repo_url']}/#{repo}/debian"
components ['wheezy', 'main']
key "#{node['grafana']['repo_url']}/gpg.key"
action :add
end
Expand Down

0 comments on commit 6a44af2

Please sign in to comment.