From e32443dbe221fe166552215d155ca4a701b4f4b1 Mon Sep 17 00:00:00 2001 From: Don Armstrong Date: Mon, 28 Mar 2016 14:31:23 -0700 Subject: [PATCH] do the signing in parallel --- sign_and_upload_debian_r | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sign_and_upload_debian_r b/sign_and_upload_debian_r index b0e402e..0411eeb 100755 --- a/sign_and_upload_debian_r +++ b/sign_and_upload_debian_r @@ -10,6 +10,6 @@ KEYID=9D05D0BE; set -x ssh $C2DEBMACHINE "find \$(echo c2d/build_results*) -type f -iname '*.changes' -print0 | perl -n0e 'next unless /.changes/; \$b = \$_; \$b =~ s/.changes/.upload/; -e \$b || print \$_;'" | \ - xargs -0r --verbose debsign -r $C2DEBMACHINE --re-sign -k$KEYID; + xargs -0r -P 4 -n 40 --verbose debsign -r $C2DEBMACHINE --re-sign -k$KEYID; ssh $C2DEBMACHINE "find \$(echo c2d/build_results*) -type f -iname '*.changes' -print0 | perl -n0e '\$b = \$_; \$b =~ s/.changes/.upload/; -e \$b || print \$_;'|xargs -P2 -n 40 --verbose -0r dupload --to debianr -k;" -- 2.39.2