]> git.openstreetmap.org Git - chef.git/blob - cookbooks/tile/templates/default/replicate.init.erb
Add tile cookbook
[chef.git] / cookbooks / tile / templates / default / replicate.init.erb
1 #!/bin/bash
2
3 # DO NOT EDIT - This file is being maintained by Chef
4
5 start() {
6   start-stop-daemon --start --chuid tile --background --make-pidfile -pidfile /var/run/replicate.pid --exec /usr/local/bin/replicate
7 }
8
9 stop() {
10   start-stop-daemon --stop --retry 300 --pidfile /var/run/replicate.pid --exec /usr/local/bin/replicate
11 }
12
13 case "$1" in
14   start)
15     start
16     ;;
17   stop)
18     stop
19     ;;
20   restart)
21     stop || exit $?
22     start
23     ;;
24 esac