X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/3aa7c1c38a56374821133c7881f50224bdb03644..b00a56cbb5ef6ac0f2449e52d2126abb9529d065:/cookbooks/apt/recipes/default.rb diff --git a/cookbooks/apt/recipes/default.rb b/cookbooks/apt/recipes/default.rb index d3ec6e4c5..c004043ef 100644 --- a/cookbooks/apt/recipes/default.rb +++ b/cookbooks/apt/recipes/default.rb @@ -34,7 +34,7 @@ template "/etc/apt/sources.list" do owner "root" group "root" mode 0644 - notifies :run, resources(:execute => "apt-update") + notifies :run, "execute[apt-update]" end apt_source "opscode" do @@ -78,11 +78,6 @@ apt_source "brianmercer-php" do key "8D0DC64F" end -apt_source "aw-drupal" do - url "http://ppa.launchpad.net/aw/drupal/ubuntu" - key "7D5AE8F6" -end - apt_source "openstreetmap" do url "http://ppa.launchpad.net/osmadmins/ppa/ubuntu" key "0AC4F2CB" @@ -101,6 +96,7 @@ apt_source "management-component-pack" do end apt_source "hwraid" do + template "hwraid.list.erb" url "http://hwraid.le-vert.net/ubuntu" key "23B3D3B4" end @@ -109,3 +105,15 @@ apt_source "mapnik-v210" do url "http://ppa.launchpad.net/mapnik/v2.1.0/ubuntu" key "5D50B6BA" end + +apt_source "nginx" do + template "nginx.list.erb" + url "http://nginx.org/packages/ubuntu" + key "7BD9BF62" +end + +apt_source "elasticsearch" do + template "elasticsearch.list.erb" + url "http://packages.elasticsearch.org/elasticsearch/1.0/debian" + key "D88E42B4" +end