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 44E52138350 for ; Sat, 25 Apr 2020 03:55:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 80F73E0A00; Sat, 25 Apr 2020 03:55:35 +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 61B21E0A00 for ; Sat, 25 Apr 2020 03:55:35 +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 617A634F19E for ; Sat, 25 Apr 2020 03:55:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C1F211DD for ; Sat, 25 Apr 2020 03:55:31 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1587786860.7f9d62eae5b8a93b0e67ee1da758a8f2e2dd5832.mattst88@gentoo> Subject: [gentoo-commits] proj/releng:master commit in: tools/ X-VCS-Repository: proj/releng X-VCS-Files: tools/catalyst-auto-ppc.conf tools/catalyst-auto-ppc64le.conf X-VCS-Directories: tools/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: 7f9d62eae5b8a93b0e67ee1da758a8f2e2dd5832 X-VCS-Branch: master Date: Sat, 25 Apr 2020 03:55:31 +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: b4fdbbd1-4974-46c7-b373-188e8a584472 X-Archives-Hash: 198f375b7f67972614326c7453e0ef07 commit: 7f9d62eae5b8a93b0e67ee1da758a8f2e2dd5832 Author: Matt Turner gentoo org> AuthorDate: Sat Apr 25 03:54:20 2020 +0000 Commit: Matt Turner gentoo org> CommitDate: Sat Apr 25 03:54:20 2020 +0000 URL: https://gitweb.gentoo.org/proj/releng.git/commit/?id=7f9d62ea ppc: Use StrictHostKeyChecking=no We're using UserKnownHostsFile=/dev/null to force ssh to use the fingerprint from DNSSEC, so StrictHostKeyChecking=no just prevents ssh from asking us to confirm the fingerprint. Signed-off-by: Matt Turner gentoo.org> tools/catalyst-auto-ppc.conf | 2 +- tools/catalyst-auto-ppc64le.conf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/catalyst-auto-ppc.conf b/tools/catalyst-auto-ppc.conf index c6e6e67a..1ff04bd0 100644 --- a/tools/catalyst-auto-ppc.conf +++ b/tools/catalyst-auto-ppc.conf @@ -32,7 +32,7 @@ update_symlinks() { } upload() { - rsync -e 'ssh -i /root/.ssh/id_rsa -o UserKnownHostsFile=/dev/null -o VerifyHostKeyDNS=yes' "$@" ppc@releng-incoming.gentoo.org: + rsync -e 'ssh -i /root/.ssh/id_rsa -o UserKnownHostsFile=/dev/null -o VerifyHostKeyDNS=yes -o StrictHostKeyChecking=no' "$@" ppc@releng-incoming.gentoo.org: } post_build() { diff --git a/tools/catalyst-auto-ppc64le.conf b/tools/catalyst-auto-ppc64le.conf index b9f09e46..acfcdfec 100644 --- a/tools/catalyst-auto-ppc64le.conf +++ b/tools/catalyst-auto-ppc64le.conf @@ -31,7 +31,7 @@ update_symlinks() { } upload() { - rsync -e 'ssh -i /root/.ssh/id_rsa -o UserKnownHostsFile=/dev/null -o VerifyHostKeyDNS=yes' "$@" ppc@releng-incoming.gentoo.org: + rsync -e 'ssh -i /root/.ssh/id_rsa -o UserKnownHostsFile=/dev/null -o VerifyHostKeyDNS=yes -o StrictHostKeyChecking=no' "$@" ppc@releng-incoming.gentoo.org: } post_build() {