]> git.openstreetmap.org Git - chef.git/commitdiff
Don't configure an update host for cgimap in readonly mode
authorTom Hughes <tom@compton.nu>
Sun, 15 Dec 2024 12:18:45 +0000 (12:18 +0000)
committerTom Hughes <tom@compton.nu>
Sun, 15 Dec 2024 12:18:45 +0000 (12:18 +0000)
cookbooks/web/recipes/cgimap.rb

index 72e41b3e2515295ae1603191914b8750ac8d47ba..a75172b180e5797bbcff28b932869caad4382989 100644 (file)
@@ -41,7 +41,6 @@ cgimap_options = {
   "CGIMAP_DBNAME" => "openstreetmap",
   "CGIMAP_USERNAME" => "cgimap",
   "CGIMAP_PASSWORD" => db_passwords["cgimap"],
-  "CGIMAP_UPDATE_HOST" => node[:web][:database_host],
   "CGIMAP_PIDFILE" => "#{node[:web][:pid_directory]}/cgimap.pid",
   "CGIMAP_LOGFILE" => "#{node[:web][:log_directory]}/cgimap.log",
   "CGIMAP_MEMCACHE" => memcached_servers.join(","),
@@ -59,6 +58,8 @@ cgimap_options = {
 
 if %w[database_readonly api_readonly].include?(node[:web][:status])
   cgimap_options["CGIMAP_DISABLE_API_WRITE"] = "true"
+else
+  cgimap_options["CGIMAP_UPDATE_HOST"] = node[:web][:database_host]
 end
 
 systemd_service "cgimap" do