From 4ce829874015d05a97dc58e365ee1e9966019b50 Mon Sep 17 00:00:00 2001 From: Tom Hughes Date: Wed, 31 Aug 2016 12:31:19 +0100 Subject: [PATCH] Avoid errors cleaning export files --- cookbooks/tile/templates/default/export.cron.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cookbooks/tile/templates/default/export.cron.erb b/cookbooks/tile/templates/default/export.cron.erb index d2f3be178..b598e4113 100644 --- a/cookbooks/tile/templates/default/export.cron.erb +++ b/cookbooks/tile/templates/default/export.cron.erb @@ -3,4 +3,4 @@ # 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 -print0 | xargs -0r rm -f +exec find /tmp -ignore_readdir_race -name 'export??????' -mmin +60 -delete -- 2.43.2