X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/03cbe3638e5aee35453da58e2789f8bc7ba58f89..86dd0e99c6342b5dc6a236ba1da80ad18c8f3aab:/cookbooks/imagery/resources/site.rb diff --git a/cookbooks/imagery/resources/site.rb b/cookbooks/imagery/resources/site.rb index 97163ee3e..dc819ebf9 100644 --- a/cookbooks/imagery/resources/site.rb +++ b/cookbooks/imagery/resources/site.rb @@ -1,8 +1,8 @@ # -# Cookbook Name:: imagery +# Cookbook:: imagery # Resource:: imagery_site # -# Copyright 2016, OpenStreetMap Foundation +# Copyright:: 2016, OpenStreetMap Foundation # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -137,19 +137,21 @@ action :create do nginx_site new_resource.site do template "nginx_imagery.conf.erb" directory "/srv/imagery/#{new_resource.site}" - restart_nginx false + reload_nginx false variables new_resource.to_hash end end action :delete do - service "mapserv-fcgi-#{new_resource.site}" do - provider Chef::Provider::Service::Systemd - action [:stop, :disable] - end + %w[0 1 2 3 4 5 6 7].each do |index| + service "mapserv-fcgi-#{new_resource.site}-#{index}" do + provider Chef::Provider::Service::Systemd + action [:stop, :disable] + end - systemd_service "mapserv-fcgi-#{new_resource.site}" do - action :delete + systemd_service "mapserv-fcgi-#{new_resource.site}-#{index}" do + action :delete + end end nginx_site new_resource.site do