]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/ssl/recipes/default.rb
Update formatting of header comments
[chef.git] / cookbooks / ssl / recipes / default.rb
index fa4ab02d8f1bf8cd3cec1dc6a984f42a658bc03c..674c8768d24f897f95199939a5e6e4ac65209d3b 100644 (file)
@@ -1,8 +1,8 @@
 #
 #
-# Cookbook Name:: ssl
+# Cookbook:: ssl
 # Recipe:: default
 #
 # Recipe:: default
 #
-# Copyright 2011, OpenStreetMap Foundation
+# Copyright:: 2011, OpenStreetMap Foundation
 #
 # Licensed under the Apache License, Version 2.0 (the "License");
 # you may not use this file except in compliance with the License.
 #
 # Licensed under the Apache License, Version 2.0 (the "License");
 # you may not use this file except in compliance with the License.
 package "openssl"
 package "ssl-cert"
 
 package "openssl"
 package "ssl-cert"
 
-%w[letsencrypt dhparam].each do |certificate|
-  cookbook_file "/etc/ssl/certs/#{certificate}.pem" do
-    owner "root"
-    group "root"
-    mode 0o444
-    backup false
-  end
+cookbook_file "/etc/ssl/certs/letsencrypt.pem" do
+  owner "root"
+  group "root"
+  mode 0o444
+  backup false
+end
+
+openssl_dhparam "/etc/ssl/certs/dhparam.pem" do
+  owner "root"
+  group "root"
+  mode 0o444
 end
 end