From: Jochen Topf Date: Sun, 27 Jun 2021 15:40:27 +0000 (+0200) Subject: Increase log verbosity level of planet update X-Git-Url: https://git.openstreetmap.org/chef.git/commitdiff_plain/39363c3d9d15aee8bf04f8f096837f33cc3fb13b Increase log verbosity level of planet update Increase verbosity level of pyosmium-up-to-date in /usr/local/bin/planet-update to help finding out why it fails so often. --- diff --git a/cookbooks/planet/templates/default/planet-update-file.erb b/cookbooks/planet/templates/default/planet-update-file.erb index 4b067e640..16c7fed17 100644 --- a/cookbooks/planet/templates/default/planet-update-file.erb +++ b/cookbooks/planet/templates/default/planet-update-file.erb @@ -12,12 +12,12 @@ PLANETCURR="${PLANETDIR}/planet.${SUFFIX}" PLANETNEW="${PLANETDIR}/planet-new.${SUFFIX}" PLANETTMP="${PLANETDIR}/planet-tmp.${SUFFIX}" -pyosmium-up-to-date -v -o "$PLANETNEW" "$PLANETCURR" +pyosmium-up-to-date -vvv -o "$PLANETNEW" "$PLANETCURR" retval=$? while [ $retval -eq 1 ]; do mv "$PLANETNEW" "$PLANETTMP" - pyosmium-up-to-date -v -o "$PLANETNEW" "$PLANETTMP" + pyosmium-up-to-date -vvv -o "$PLANETNEW" "$PLANETTMP" retval=$? rm "$PLANETTMP" done