]> git.openstreetmap.org Git - chef.git/commitdiff
Don't error if a temp file vanishes before we can remove it
authorTom Hughes <tom@compton.nu>
Tue, 20 May 2014 13:34:53 +0000 (14:34 +0100)
committerTom Hughes <tom@compton.nu>
Tue, 20 May 2014 13:34:53 +0000 (14:34 +0100)
cookbooks/tile/templates/default/export.cron.erb

index da828546ef6f8cb82933785be5af4ec99ffc652d..d2f3be1788969ee1128132aafff577d776075b78 100644 (file)
@@ -1,4 +1,6 @@
 #!/bin/sh
 
+# DO NOT EDIT - This file is being maintained by Chef
+
 # Removes stale tmp files from the export tab
-exec find /tmp -name 'export??????' -mmin +60 -delete
+exec find /tmp -name 'export??????' -mmin +60 -print0 | xargs -0r rm -f