Skip to content

Commit

Permalink
[COOK-1916] Fix: Development for mod_auth_openid has apparently mov…
Browse files Browse the repository at this point in the history
…ed to Github, and releases are being stored there now.
  • Loading branch information
Pat Collins committed Nov 19, 2012
1 parent 06b023a commit 1278415
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion recipes/mod_auth_openid.rb
Expand Up @@ -71,7 +71,11 @@
configure_flags = node['apache']['mod_auth_openid']['configure_flags']

remote_file "#{Chef::Config['file_cache_path']}/mod_auth_openid-#{version}.tar.gz" do
source "http://butterfat.net/releases/mod_auth_openid/mod_auth_openid-#{version}.tar.gz"
if Chef::Version.new(version) >= Chef::Version.new(0.7)
source "https://github.com/downloads/bmuller/mod_auth_openid/mod_auth_openid-#{version}.tar.gz"
else
source "http://butterfat.net/releases/mod_auth_openid/mod_auth_openid-#{version}.tar.gz"
end
mode 00644
checksum _checksum
end
Expand Down

0 comments on commit 1278415

Please sign in to comment.