]> git.openstreetmap.org Git - chef.git/blob - cookbooks/nominatim/templates/default/updater.init.erb
nominatim: enable file-based query log and log rotation
[chef.git] / cookbooks / nominatim / templates / default / updater.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 nominatim --background --make-pidfile --pidfile /var/run/nominatim-update.pid --exec <%= @source_directory %>/utils/nominatim-update
7 }
8
9 stop() {
10   start-stop-daemon --stop --retry 3600 --pidfile /var/run/nominatim-update.pid
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
25