X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/92837c0f85ab30e0793bfb1010cfc126ce6d3dde..20e6d4524062198d6521c5e692e73c57984a322a:/cookbooks/apache/recipes/ssl.rb?ds=sidebyside diff --git a/cookbooks/apache/recipes/ssl.rb b/cookbooks/apache/recipes/ssl.rb index 0dbe07c2f..3e3941099 100644 --- a/cookbooks/apache/recipes/ssl.rb +++ b/cookbooks/apache/recipes/ssl.rb @@ -33,9 +33,8 @@ apache_conf "ssl" do notifies :reload, "service[apache2]" end -service "apache2" do - action :nothing - subscribes :restart, "cookbook_file[/etc/ssl/certs/#{certificate_chain}.pem]" - subscribes :restart, "cookbook_file[/etc/ssl/certs/#{certificate}.pem]" - subscribes :restart, "file[/etc/ssl/private/#{certificate}.key]" -end +apache = resources("service[apache2]") + +apache.subscribes(:restart, "cookbook_file[/etc/ssl/certs/#{certificate_chain}.pem]") +apache.subscribes(:restart, "file[/etc/ssl/certs/#{certificate}.pem]") +apache.subscribes(:restart, "file[/etc/ssl/private/#{certificate}.key]")