X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/45dde9418dd342bb1a632d82559201c0b3becf1a..07417174dc9d0271283aacbe20b1cd73ec374685:/cookbooks/nginx/resources/site.rb diff --git a/cookbooks/nginx/resources/site.rb b/cookbooks/nginx/resources/site.rb index 5ebaca69b..8a50ae042 100644 --- a/cookbooks/nginx/resources/site.rb +++ b/cookbooks/nginx/resources/site.rb @@ -19,12 +19,11 @@ default_action :create -property :site, :kind_of => String, :name_attribute => true +property :site, :kind_of => String, :name_property => true property :directory, :kind_of => String property :cookbook, :kind_of => String property :template, :kind_of => String, :required => true property :variables, :kind_of => Hash, :default => {} -property :restart_nginx, :kind_of => [TrueClass, FalseClass], :default => true action :create do declare_resource :template, conf_path do @@ -40,6 +39,7 @@ end action :delete do file conf_path do action :delete + notifies :reload, "service[nginx]" end end @@ -54,5 +54,5 @@ action_class do end def after_created - notifies :restart, "service[nginx]" if restart_nginx + notifies :reload, "service[nginx]" end