bashssh: revert hack from 11006 and see if it is really fixed by quoting we did with new ansible
Signed-off-by: Kevin Fenzi <kevin@scrye.com>
This commit is contained in:
parent
99a074fe36
commit
aa5e7e86ee
2 changed files with 2 additions and 15 deletions
|
@ -1,5 +1,2 @@
|
||||||
# Put here configuration for all copr instances (production, devel, ...)
|
# Put here configuration for all copr instances (production, devel, ...)
|
||||||
---
|
---
|
||||||
|
|
||||||
# TODO: https://pagure.io/fedora-infrastructure/issue/11006
|
|
||||||
no_ed25519_key: 1
|
|
||||||
|
|
|
@ -12,23 +12,13 @@ Ciphers chacha20-poly1305@openssh.com,aes256-gcm@openssh.com,aes128-gcm@openssh.
|
||||||
MACs hmac-sha2-512-etm@openssh.com,hmac-sha2-256-etm@openssh.com,umac-128-etm@openssh.com,hmac-sha2-512,hmac-sha2-256,umac-128@openssh.com
|
MACs hmac-sha2-512-etm@openssh.com,hmac-sha2-256-etm@openssh.com,umac-128-etm@openssh.com,hmac-sha2-512,hmac-sha2-256,umac-128@openssh.com
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% set ed25519_key=True %}
|
|
||||||
|
|
||||||
{% if ansible_hostname.startswith(('pkgs01','pagure02')) %}
|
|
||||||
{% set ed25519_key=False %}
|
|
||||||
{% endif %}
|
|
||||||
|
|
||||||
{% if no_ed25519_key is defined %}
|
|
||||||
{% set ed25519_key=False %}
|
|
||||||
{% endif %}
|
|
||||||
|
|
||||||
HostKey /etc/ssh/ssh_host_rsa_key
|
HostKey /etc/ssh/ssh_host_rsa_key
|
||||||
{% if ed25519_key %}
|
{% if not ansible_hostname.startswith(('pkgs01','pagure02')) %}
|
||||||
HostKey /etc/ssh/ssh_host_ed25519_key
|
HostKey /etc/ssh/ssh_host_ed25519_key
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
HostCertificate /etc/ssh/ssh_host_rsa_key-cert.pub
|
HostCertificate /etc/ssh/ssh_host_rsa_key-cert.pub
|
||||||
{% if ed25519_key %}
|
{% if not ansible_hostname.startswith(('pkgs01','pagure02')) %}
|
||||||
HostCertificate /etc/ssh/ssh_host_ed25519_key-cert.pub
|
HostCertificate /etc/ssh/ssh_host_ed25519_key-cert.pub
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue