]> git.openstreetmap.org Git - chef.git/blob - cookbooks/nominatim/templates/default/nominatim-update-refresh-db.erb
ff70bea457a4814a657a5b7d3111f48d5f14750f
[chef.git] / cookbooks / nominatim / templates / default / nominatim-update-refresh-db.erb
1 #!/bin/bash -e
2
3 # DO NOT EDIT - This file is being maintained by Chef
4
5 date "+%c === Refresh database after software updates"
6
7 cd <%= @projectdir %>
8
9 <% if node.platform?("debian") -%>
10 <%= @venvprefix %>nominatim admin --migrate
11 <%= @venvprefix %>nominatim refresh --functions --address-levels
12 <% else -%>
13 # Run the migrations from the nominatim version in the build directory,
14 # so they can execute while the frontend doesn't have the new code yet.
15 <%= @builddir %>/nominatim admin --migrate
16 <%= @builddir %>/nominatim refresh --functions --address-levels --website
17 <% end -%>