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 16FC5138350 for ; Wed, 29 Apr 2020 05:41:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 417FCE08FF; Wed, 29 Apr 2020 05:41:34 +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 2C713E08FF for ; Wed, 29 Apr 2020 05:41:34 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 EE03734EF79 for ; Wed, 29 Apr 2020 05:41:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E24FF9C for ; Wed, 29 Apr 2020 05:41:30 +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: <1588138888.a0841c139bd7830a56ad9e0dfb215148711a68c7.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: a0841c139bd7830a56ad9e0dfb215148711a68c7 X-VCS-Branch: master Date: Wed, 29 Apr 2020 05:41:30 +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: a51a4795-a64a-4df3-b6c5-1cb72eef97b9 X-Archives-Hash: 76c9decde20476b11038a370c8a95e9a commit: a0841c139bd7830a56ad9e0dfb215148711a68c7 Author: Robin H. Johnson gentoo org> AuthorDate: Wed Apr 29 05:41:28 2020 +0000 Commit: Robin H. Johnson gentoo org> CommitDate: Wed Apr 29 05:41:28 2020 +0000 URL: https://gitweb.gentoo.org/proj/gentoo-mirrorstats.git/commit/?id=a0841c13 probe-mirmon: be quiet if rsync site is broken Signed-off-by: Robin H. Johnson gentoo.org> probe-mirmon | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/probe-mirmon b/probe-mirmon index ddd8546..8dce832 100755 --- a/probe-mirmon +++ b/probe-mirmon @@ -48,8 +48,8 @@ sub handle_rsync { $file =~ s/\W/_/g; # translate all non-letters to _ - if ( my $fail = system '/usr/bin/rsync', qw( --no-motd --timeout ), $timeout, $url, "$dir/$file" ) { - warn "rsync failed, exit code $fail, $! $? $@\n"; + if ( my $fail = system '/usr/bin/rsync', qw( -q --no-motd --timeout ), $timeout, $url, "$dir/$file" ) { + #warn "rsync failed, exit code $fail, $! $? $@\n"; exit $fail; }