X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/13f8835f70746c764e25dfd76a285302233e5136..b00a56cbb5ef6ac0f2449e52d2126abb9529d065:/cookbooks/apt/recipes/default.rb diff --git a/cookbooks/apt/recipes/default.rb b/cookbooks/apt/recipes/default.rb index 65f625a0b..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 @@ -115,3 +111,9 @@ apt_source "nginx" do 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