From ff2cf9010509cf5bb16b612991777b7f950b5065 Mon Sep 17 00:00:00 2001 From: Joerg Jaspert Date: Sat, 12 Mar 2011 15:05:44 +0100 Subject: [PATCH] we do want -n1, not -n16. we want as many parallel xz as we can Signed-off-by: Joerg Jaspert --- config/debian/dinstall.functions | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/debian/dinstall.functions b/config/debian/dinstall.functions index 587df1b5..dbbf30a8 100644 --- a/config/debian/dinstall.functions +++ b/config/debian/dinstall.functions @@ -527,10 +527,10 @@ function compress() { find -maxdepth 1 -mindepth 1 -type f -name 'dump_pre_*' -mtime +2 -print0 | xargs -0 --no-run-if-empty rm find -maxdepth 1 -mindepth 1 -type f -name 'dump_*' \! -name '*.bz2' \! -name '*.gz' \! -name '*.xz' -mmin +720 -print0 \ - | xargs --no-run-if-empty -0 -P4 -n16 xz -9v + | xargs --no-run-if-empty -0 -P4 -n1 xz -9v find -maxdepth 1 -mindepth 1 -type f -name "dumpall_*" \! -name '*.bz2' \! -name '*.gz' \! -name '*.xz' -mmin +720 \ - | xargs --no-run-if-empty -0 -P4 -n16 xz -9v + | xargs --no-run-if-empty -0 -P4 -n1 xz -9v finddup -l -d $base/backup } -- 2.39.2