]> git.openstreetmap.org Git - chef.git/commitdiff
Fix cookstyle warnings
authorTom Hughes <tom@compton.nu>
Sat, 16 Jan 2021 11:16:16 +0000 (11:16 +0000)
committerTom Hughes <tom@compton.nu>
Sat, 16 Jan 2021 11:25:36 +0000 (11:25 +0000)
cookbooks/prometheus/recipes/server.rb

index 6e112a000fcf775d686f45f2fe9da0899615fd8d..bbb7fbae5d7bc369e22554f2f1d759bf98b7899c 100644 (file)
@@ -81,8 +81,8 @@ execute "/opt/promscale/extension/Makefile" do
   cwd "/opt/promscale/extension"
   user "root"
   group "root"
-  subscribes :run, "git[/opt/promscale/extension]", :immediate
-  notifies :restart, "service[postgresql]", :immediate
+  subscribes :run, "git[/opt/promscale/extension]", :immediately
+  notifies :restart, "service[postgresql]", :immediately
 end
 
 directory "/opt/promscale/bin" do
@@ -104,7 +104,7 @@ systemd_service "promscale" do
   type "simple"
   user "prometheus"
   exec_start "/opt/promscale/bin/promscale --db-host /run/postgresql --db-port 5432 --db-user prometheus --db-name promscale --db-connections-max 400"
- exec_start lazy { "/opt/promscale/bin/promscale --db-host /run/postgresql --db-port #{node[:postgresql][:clusters][database_cluster][:port]} --db-user prometheus --db-name promscale --db-max-connections 400" }
+  # exec_start lazy { "/opt/promscale/bin/promscale --db-host /run/postgresql --db-port #{node[:postgresql][:clusters][database_cluster][:port]} --db-user prometheus --db-name promscale --db-max-connections 400" }
   private_tmp true
   protect_system "strict"
   protect_home true