You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spamassassin.apache.org by jm...@apache.org on 2008/04/21 13:59:08 UTC

svn commit: r650116 - /spamassassin/trunk/masses/rule-qa/nightly-slave-stop

Author: jm
Date: Mon Apr 21 04:59:06 2008
New Revision: 650116

URL: http://svn.apache.org/viewvc?rev=650116&view=rev
Log:
add a couple of ||trues to avoid spurious errors

Modified:
    spamassassin/trunk/masses/rule-qa/nightly-slave-stop

Modified: spamassassin/trunk/masses/rule-qa/nightly-slave-stop
URL: http://svn.apache.org/viewvc/spamassassin/trunk/masses/rule-qa/nightly-slave-stop?rev=650116&r1=650115&r2=650116&view=diff
==============================================================================
--- spamassassin/trunk/masses/rule-qa/nightly-slave-stop (original)
+++ spamassassin/trunk/masses/rule-qa/nightly-slave-stop Mon Apr 21 04:59:06 2008
@@ -15,7 +15,10 @@
 
 # and clean out the client-side caches of old cached mail
 ssh $host \
-  cd $clienttree/cs_cache \&\& find . -type f -mtime +180 -print \| xargs rm
+  cd $clienttree/cs_cache \&\& find . -type f -mtime +180 -print \| xargs rm \
+  || true
+
 ssh $host \
-  cd $clienttree/cs_cache \&\& find . -depth -type d -empty -print \| xargs rmdir
+  cd $clienttree/cs_cache \&\& find . -depth -type d -empty -print \| xargs rmdir \
+  || true