#!/bin/bash -e # DO NOT EDIT - This file is being maintained by Chef # Change to Nominatim directory cd <%= @bindir %> while [ ! -f "<%= @update_stop_file %>" ] do # Send output to the log (logrotatable) exec >> <%= @logfile %> 2>&1 starttime=`date +%s` ./utils/update.php --no-npi --import-osmosis pushd <%= @srcdir %> if git fetch origin; then # will trigger recompilation if necessary git merge origin/<%= @branch %> else echo "WARNING: git fetch failed." fi popd # sleep a bit if updates take less than a minute endtime=`date +%s` elapsed=$((endtime - starttime)) if [[ $elapsed -lt 60 ]] then sleepy=$((60 - $elapsed)) echo "Sleeping for ${sleepy}s..." sleep $sleepy fi done