Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/releng:master commit in: tools/
Date: Sat, 25 Apr 2020 03:55:36
Message-Id: 1587786860.7f9d62eae5b8a93b0e67ee1da758a8f2e2dd5832.mattst88@gentoo
1 commit: 7f9d62eae5b8a93b0e67ee1da758a8f2e2dd5832
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Sat Apr 25 03:54:20 2020 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Sat Apr 25 03:54:20 2020 +0000
6 URL: https://gitweb.gentoo.org/proj/releng.git/commit/?id=7f9d62ea
7
8 ppc: Use StrictHostKeyChecking=no
9
10 We're using UserKnownHostsFile=/dev/null to force ssh to use the
11 fingerprint from DNSSEC, so StrictHostKeyChecking=no just prevents ssh
12 from asking us to confirm the fingerprint.
13
14 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
15
16 tools/catalyst-auto-ppc.conf | 2 +-
17 tools/catalyst-auto-ppc64le.conf | 2 +-
18 2 files changed, 2 insertions(+), 2 deletions(-)
19
20 diff --git a/tools/catalyst-auto-ppc.conf b/tools/catalyst-auto-ppc.conf
21 index c6e6e67a..1ff04bd0 100644
22 --- a/tools/catalyst-auto-ppc.conf
23 +++ b/tools/catalyst-auto-ppc.conf
24 @@ -32,7 +32,7 @@ update_symlinks() {
25 }
26
27 upload() {
28 - rsync -e 'ssh -i /root/.ssh/id_rsa -o UserKnownHostsFile=/dev/null -o VerifyHostKeyDNS=yes' "$@" ppc@××××××××××××××××××××××.org:
29 + rsync -e 'ssh -i /root/.ssh/id_rsa -o UserKnownHostsFile=/dev/null -o VerifyHostKeyDNS=yes -o StrictHostKeyChecking=no' "$@" ppc@××××××××××××××××××××××.org:
30 }
31
32 post_build() {
33
34 diff --git a/tools/catalyst-auto-ppc64le.conf b/tools/catalyst-auto-ppc64le.conf
35 index b9f09e46..acfcdfec 100644
36 --- a/tools/catalyst-auto-ppc64le.conf
37 +++ b/tools/catalyst-auto-ppc64le.conf
38 @@ -31,7 +31,7 @@ update_symlinks() {
39 }
40
41 upload() {
42 - rsync -e 'ssh -i /root/.ssh/id_rsa -o UserKnownHostsFile=/dev/null -o VerifyHostKeyDNS=yes' "$@" ppc@××××××××××××××××××××××.org:
43 + rsync -e 'ssh -i /root/.ssh/id_rsa -o UserKnownHostsFile=/dev/null -o VerifyHostKeyDNS=yes -o StrictHostKeyChecking=no' "$@" ppc@××××××××××××××××××××××.org:
44 }
45
46 post_build() {