]> git.openstreetmap.org Git - chef.git/commitdiff
Fix pid file handling for tile services
authorTom Hughes <tom@compton.nu>
Tue, 25 Jun 2013 17:45:55 +0000 (18:45 +0100)
committerTom Hughes <tom@compton.nu>
Tue, 25 Jun 2013 17:53:09 +0000 (18:53 +0100)
cookbooks/tile/templates/default/replicate.init.erb
cookbooks/tile/templates/default/update-lowzoom.init.erb

index d2200f87ac13020faca541236e004d4949d0235f..b7c6220fb01d0b629f5d31e3e05934411df78da3 100644 (file)
@@ -3,11 +3,11 @@
 # DO NOT EDIT - This file is being maintained by Chef
 
 start() {
-  start-stop-daemon --start --chuid tile --background --make-pidfile -pidfile /var/run/replicate.pid --exec /usr/local/bin/replicate
+  start-stop-daemon --start --chuid tile --background --make-pidfile --pidfile /var/run/replicate.pid --exec /usr/local/bin/replicate
 }
 
 stop() {
-  start-stop-daemon --stop --retry 300 --pidfile /var/run/replicate.pid --exec /usr/local/bin/replicate
+  start-stop-daemon --stop --retry 300 --pidfile /var/run/replicate.pid
 }
 
 case "$1" in
index 3439f09b6d5c792262380559c464e89af8f75ba2..8fe1fa36402079e9b9e0c82de13f482568ede38e 100644 (file)
@@ -3,11 +3,11 @@
 # DO NOT EDIT - This file is being maintained by Chef
 
 start() {
-  start-stop-daemon --start --chuid tile --background --make-pidfile -pidfile /var/run/update-lowzoom-<%= @style %>.pid --exec /usr/local/bin/update-lowzoom-<%= @style %>
+  start-stop-daemon --start --chuid tile --background --make-pidfile --pidfile /var/run/update-lowzoom-<%= @style %>.pid --exec /usr/local/bin/update-lowzoom-<%= @style %>
 }
 
 stop() {
-  start-stop-daemon --stop --retry 300 --pidfile /var/run/update-lowzoom-<%= @style %>.pid --exec /usr/local/bin/update-lowzoom-<%= @style %>
+  start-stop-daemon --stop --retry 300 --pidfile /var/run/update-lowzoom-<%= @style %>.pid
 }
 
 case "$1" in