summaryrefslogtreecommitdiffstats
path: root/etc/daily
diff options
context:
space:
mode:
Diffstat (limited to 'etc/daily')
-rw-r--r--etc/daily6
1 files changed, 4 insertions, 2 deletions
diff --git a/etc/daily b/etc/daily
index c14b0ea..7b8258c 100644
--- a/etc/daily
+++ b/etc/daily
@@ -25,8 +25,10 @@ fi
if [ -d /scratch ]; then
cd /scratch && {
- find . ! -name . -atime +1 -exec rm -f -- {} \;
- find . ! -name . -type d -mtime +1 -exec rmdir -- {} \; \
+ find . ! -name . ! -fstype local -a -prune -o \
+ -atime +1 -exec rm -f -- {} \;
+ find . ! -name . ! -fstype local -a -prune -o \
+ -type d -mtime +1 -exec rmdir -- {} \; \
>/dev/null 2>&1; }
fi
OpenPOWER on IntegriCloud