mirror of
https://github.com/saltstack-formulas/openssh-formula.git
synced 2024-12-01 02:31:19 +01:00
1b74efd2d0
This state manages /etc/ssh/ssh_known_hosts and fills it with public SSH host keys of other minions.
67 lines
2.4 KiB
Django/Jinja
67 lines
2.4 KiB
Django/Jinja
{% set openssh = salt['grains.filter_by']({
|
|
'Arch': {
|
|
'server': 'openssh',
|
|
'client': 'openssh',
|
|
'service': 'sshd.socket',
|
|
'sshd_config': '/etc/ssh/sshd_config',
|
|
'sshd_config_src': 'salt://openssh/files/sshd_config',
|
|
'banner': '/etc/ssh/banner',
|
|
'banner_src': 'salt://openssh/files/banner',
|
|
'dig_pkg': 'dnsutils',
|
|
'ssh_known_hosts': '/etc/ssh/ssh_known_hosts',
|
|
},
|
|
'Debian': {
|
|
'server': 'openssh-server',
|
|
'client': 'openssh-client',
|
|
'service': 'ssh',
|
|
'sshd_config': '/etc/ssh/sshd_config',
|
|
'sshd_config_src': 'salt://openssh/files/sshd_config',
|
|
'banner': '/etc/ssh/banner',
|
|
'banner_src': 'salt://openssh/files/banner',
|
|
'dig_pkg': 'dnsutils',
|
|
'ssh_known_hosts': '/etc/ssh/ssh_known_hosts',
|
|
},
|
|
'FreeBSD': {
|
|
'service': 'sshd',
|
|
'sshd_config': '/etc/ssh/sshd_config',
|
|
'sshd_config_src': 'salt://openssh/files/sshd_config',
|
|
'banner': '/etc/ssh/banner',
|
|
'banner_src': 'salt://openssh/files/banner',
|
|
'dig_pkg': 'bind-tools',
|
|
'ssh_known_hosts': '/etc/ssh/ssh_known_hosts',
|
|
},
|
|
'Gentoo': {
|
|
'server': 'net-misc/openssh',
|
|
'client': 'net-misc/openssh',
|
|
'service': 'sshd',
|
|
'sshd_config': '/etc/ssh/sshd_config',
|
|
'sshd_config_src': 'salt://openssh/files/sshd_config',
|
|
'banner': '/etc/ssh/banner',
|
|
'banner_src': 'salt://openssh/files/banner',
|
|
'dig_pkg': 'net-dns/bind-tools',
|
|
'ssh_known_hosts': '/etc/ssh/ssh_known_hosts',
|
|
},
|
|
'RedHat': {
|
|
'server': 'openssh-server',
|
|
'client': 'openssh',
|
|
'service': 'sshd',
|
|
'sshd_config': '/etc/ssh/sshd_config',
|
|
'sshd_config_src': 'salt://openssh/files/sshd_config',
|
|
'banner': '/etc/ssh/banner',
|
|
'banner_src': 'salt://openssh/files/banner',
|
|
'dig_pkg': 'bind-utils',
|
|
'ssh_known_hosts': '/etc/ssh/ssh_known_hosts',
|
|
},
|
|
'Suse': {
|
|
'server': 'openssh',
|
|
'client': 'openssh',
|
|
'service': 'sshd',
|
|
'sshd_config': '/etc/ssh/sshd_config',
|
|
'sshd_config_src': 'salt://openssh/files/sshd_config',
|
|
'banner': '/etc/ssh/banner',
|
|
'banner_src': 'salt://openssh/files/banner',
|
|
'dig_pkg': 'bind-utils',
|
|
'ssh_known_hosts': '/etc/ssh/ssh_known_hosts',
|
|
},
|
|
}, merge=salt['pillar.get']('openssh:lookup')) %}
|