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 875A41382C5 for ; Sun, 17 May 2020 15:34:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9E227E0876; Sun, 17 May 2020 15:34:52 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 804D4E0876 for ; Sun, 17 May 2020 15:34:52 +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 1167634F742 for ; Sun, 17 May 2020 15:34:51 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 920B1234 for ; Sun, 17 May 2020 15:34:48 +0000 (UTC) From: "Ben Kohler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ben Kohler" Message-ID: <1589729467.ef26f9a26fc16de15a733aaf2bae92f7fd3db1d4.bkohler@gentoo> Subject: [gentoo-commits] proj/releng:master commit in: tools/ X-VCS-Repository: proj/releng X-VCS-Files: tools/catalyst-auto-amd64-experimental.conf tools/catalyst-auto-amd64.conf tools/catalyst-auto-x86-experimental.conf tools/catalyst-auto-x86.conf X-VCS-Directories: tools/ X-VCS-Committer: bkohler X-VCS-Committer-Name: Ben Kohler X-VCS-Revision: ef26f9a26fc16de15a733aaf2bae92f7fd3db1d4 X-VCS-Branch: master Date: Sun, 17 May 2020 15:34:48 +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: ab9734e6-ce4c-4b41-8655-59840d107797 X-Archives-Hash: 4dc07aea771a8a681ac02a987805f1be commit: ef26f9a26fc16de15a733aaf2bae92f7fd3db1d4 Author: Ben Kohler gentoo org> AuthorDate: Sun May 17 15:31:07 2020 +0000 Commit: Ben Kohler gentoo org> CommitDate: Sun May 17 15:31:07 2020 +0000 URL: https://gitweb.gentoo.org/proj/releng.git/commit/?id=ef26f9a2 catalyst-auto-{amd64,x86}*.conf: add info echo to post_build Added a small debug echo so that post_build.log shows some information about what's being uploaded. Might add destination info later. Signed-off-by: Ben Kohler gentoo.org> tools/catalyst-auto-amd64-experimental.conf | 1 + tools/catalyst-auto-amd64.conf | 1 + tools/catalyst-auto-x86-experimental.conf | 1 + tools/catalyst-auto-x86.conf | 1 + 4 files changed, 4 insertions(+) diff --git a/tools/catalyst-auto-amd64-experimental.conf b/tools/catalyst-auto-amd64-experimental.conf index f09cdb3b..b70d01f9 100644 --- a/tools/catalyst-auto-amd64-experimental.conf +++ b/tools/catalyst-auto-amd64-experimental.conf @@ -62,6 +62,7 @@ update_symlinks() { } upload() { + echo " ** Uploading $@" rsync \ -e 'ssh -i /root/.ssh/id_rsa -o UserKnownHostsFile=/dev/null -o VerifyHostKeyDNS=yes -o StrictHostKeyChecking=no' \ -a \ diff --git a/tools/catalyst-auto-amd64.conf b/tools/catalyst-auto-amd64.conf index 15f691d4..8b2134f8 100644 --- a/tools/catalyst-auto-amd64.conf +++ b/tools/catalyst-auto-amd64.conf @@ -62,6 +62,7 @@ update_symlinks() { } upload() { + echo " ** Uploading $@" rsync \ -e 'ssh -i /root/.ssh/id_rsa -o UserKnownHostsFile=/dev/null -o VerifyHostKeyDNS=yes -o StrictHostKeyChecking=no' \ -a \ diff --git a/tools/catalyst-auto-x86-experimental.conf b/tools/catalyst-auto-x86-experimental.conf index 5f0e475e..10789143 100644 --- a/tools/catalyst-auto-x86-experimental.conf +++ b/tools/catalyst-auto-x86-experimental.conf @@ -49,6 +49,7 @@ update_symlinks() { } upload() { + echo " ** Uploading $@" rsync \ -e 'ssh -i /root/.ssh/id_rsa -o UserKnownHostsFile=/dev/null -o VerifyHostKeyDNS=yes -o StrictHostKeyChecking=no' \ -a \ diff --git a/tools/catalyst-auto-x86.conf b/tools/catalyst-auto-x86.conf index aa00dde1..e6307421 100644 --- a/tools/catalyst-auto-x86.conf +++ b/tools/catalyst-auto-x86.conf @@ -49,6 +49,7 @@ update_symlinks() { } upload() { + echo " ** Uploading $@" rsync \ -e 'ssh -i /root/.ssh/id_rsa -o UserKnownHostsFile=/dev/null -o VerifyHostKeyDNS=yes -o StrictHostKeyChecking=no' \ -a \