]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/elasticsearch/recipes/default.rb
Lock mail gem to version 2.7.1
[chef.git] / cookbooks / elasticsearch / recipes / default.rb
index 7feaa4a4cb269d5caa4daf075641c37ace455d1d..05c6c27d5c24618f26029d9e064ad4bb87b9ed2b 100644 (file)
 # limitations under the License.
 #
 
-include_recipe "apt"
+case node[:elasticsearch][:version]
+when "6.x" then include_recipe "apt::elasticsearch6"
+when "8.x" then include_recipe "apt::elasticsearch8"
+end
 
 package "default-jre-headless"
 package "elasticsearch"
@@ -26,7 +29,7 @@ template "/etc/elasticsearch/elasticsearch.yml" do
   source "elasticsearch.yml.erb"
   user "root"
   group "root"
-  mode 0o644
+  mode "644"
   notifies :restart, "service[elasticsearch]"
 end