]> git.decadent.org.uk Git - dak.git/commitdiff
Use "find ... -delete" instead of "find ... | xargs rm"
authorAnsgar Burchardt <ansgar@debian.org>
Mon, 27 Jul 2015 08:03:41 +0000 (10:03 +0200)
committerAnsgar Burchardt <ansgar@debian.org>
Mon, 27 Jul 2015 08:05:39 +0000 (10:05 +0200)
config/debian-security/cron.daily
config/debian/dinstall.functions

index 8b05a3016669b7a4bcb97076a5442df1185da0a1..9417a8569e8495a778582637e5cc20e8cf0bc9e9 100755 (executable)
@@ -19,7 +19,7 @@ cd $overridedir
 for file in override*.gz; do
     zcat -- "$file" > "${file%.gz}"
 done
-find . -maxdepth 1 -mindepth 1 -type l | xargs --no-run-if-empty rm
+find . -maxdepth 1 -mindepth 1 -type l -delete
 
 for suite in oldstable stable testing; do
     case $suite in
index f7510a3bef7a422616cc7a2c86e2036e08e9f1cf..6abf1b84f9cec4a033a9c257bb8582d6b2f6c7ba 100644 (file)
@@ -542,7 +542,7 @@ function stats() {
 function cleantransactions() {
     log "Cleanup transaction ids older than 3 months"
     cd $base/backup/
-    find -maxdepth 1 -mindepth 1 -type f -name 'txid_*' -mtime +90 -print0 | xargs -0 --no-run-if-empty rm
+    find -maxdepth 1 -mindepth 1 -type f -name 'txid_*' -mtime +90 -delete
 }
 
 function logstats() {