]> git.openstreetmap.org Git - chef.git/commitdiff
Append to planet update log instead of overwriting
authorJochen Topf <jochen@topf.org>
Sun, 27 Jun 2021 15:44:00 +0000 (17:44 +0200)
committerGitHub <noreply@github.com>
Sun, 27 Jun 2021 15:44:00 +0000 (17:44 +0200)
The planet update log of a run was writing over the previous log instead of appending. The log file is already rotated correctly, so it is not growing without bounds with this change.

cookbooks/planet/templates/default/planet-update.erb

index 3f6f0a6db62930544311fceecebb8ea5982ebe4e..4c00592b9b0c74684b09f48bde497e2f0cadbbc2 100644 (file)
@@ -2,7 +2,7 @@
 
 # DO NOT EDIT - This file is being maintained by Chef
 
-exec > /var/log/planet-update.log 2>&1
+exec >> /var/log/planet-update.log 2>&1
 
 echo "Updating planet file..."