From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id C5E77138350 for ; Thu, 30 Apr 2020 06:02:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 14967E08E0; Thu, 30 Apr 2020 06:02:22 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id ED9DAE08E0 for ; Thu, 30 Apr 2020 06:02:21 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id AEC5C34EF86 for ; Thu, 30 Apr 2020 06:02:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4417D1C3 for ; Thu, 30 Apr 2020 06:02:19 +0000 (UTC) From: "Robin H. Johnson" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Robin H. Johnson" Message-ID: <1588226511.5324a1b1396fe2f54245109cf1de407399d87aa3.robbat2@gentoo> Subject: [gentoo-commits] proj/gentoo-mirrorstats:master commit in: / X-VCS-Repository: proj/gentoo-mirrorstats X-VCS-Files: probe-mirmon X-VCS-Directories: / X-VCS-Committer: robbat2 X-VCS-Committer-Name: Robin H. Johnson X-VCS-Revision: 5324a1b1396fe2f54245109cf1de407399d87aa3 X-VCS-Branch: master Date: Thu, 30 Apr 2020 06:02:19 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 1f4f76b1-2946-4a4b-aedc-5822dfe0fc0e X-Archives-Hash: 0927007f842e7467c16944835b046f6b commit: 5324a1b1396fe2f54245109cf1de407399d87aa3 Author: Robin H. Johnson gentoo org> AuthorDate: Thu Apr 30 05:56:28 2020 +0000 Commit: Robin H. Johnson gentoo org> CommitDate: Thu Apr 30 06:01:51 2020 +0000 URL: https://gitweb.gentoo.org/proj/gentoo-mirrorstats.git/commit/?id=5324a1b1 probe-mirmon: discard rsync stderr Signed-off-by: Robin H. Johnson gentoo.org> probe-mirmon | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/probe-mirmon b/probe-mirmon index 8dce832..8c57691 100755 --- a/probe-mirmon +++ b/probe-mirmon @@ -48,7 +48,7 @@ sub handle_rsync { $file =~ s/\W/_/g; # translate all non-letters to _ - if ( my $fail = system '/usr/bin/rsync', qw( -q --no-motd --timeout ), $timeout, $url, "$dir/$file" ) { + if ( my $fail = system '/usr/bin/rsync', qw( -q --no-motd --timeout ), $timeout, $url, "$dir/$file", '2>/dev/null' ) { #warn "rsync failed, exit code $fail, $! $? $@\n"; exit $fail; }