]> git.openstreetmap.org Git - chef.git/blob - cookbooks/nominatim/templates/default/nominatim-update.erb
Update bundle
[chef.git] / cookbooks / nominatim / templates / default / nominatim-update.erb
1 #!/bin/bash
2
3 # DO NOT EDIT - This file is being maintained by Chef
4
5 date "+%c === Starting Nominatim update cycle"
6
7 starttime=`date +%s`
8
9 <% if node[:nominatim][:enable_git_updates] -%>
10 if /sbin/runuser -u nominatim -- <%= @bindir %>/nominatim-update-source; then
11
12   if ! /sbin/runuser -u nominatim -- <%= @bindir %>/nominatim-update-refresh-db; then
13     date "+%c === Database refresh failed. Stopping updates."
14     exit 1
15   fi
16
17   pushd <%= @builddir %>
18   make install
19
20 <% if node[:nominatim][:api_flavour] == "python" -%>
21   systemctl reload nominatim
22 <% end -%>
23 fi
24 <% end -%>
25
26 if ! /sbin/runuser -u nominatim -- <%= @bindir %>/nominatim-update-data; then
27   date "+%c === Data update failed. Stopping updates."
28   exit 1
29 fi
30
31 date "+%c === Nominatim update cycle finished"
32
33 # sleep a bit if updates take less than a minute
34 endtime=`date +%s`
35 elapsed=$((endtime - starttime))
36 if [[ $elapsed -lt 60 ]]; then
37   sleepy=$((60 - $elapsed))
38   date "+%c === Sleeping for ${sleepy}s..."
39   sleep $sleepy
40 fi