summaryrefslogtreecommitdiff
path: root/puppet/modules/site_sshd/manifests/init.pp
diff options
context:
space:
mode:
authorvarac <varacanero@zeromail.org>2014-02-13 17:22:18 +0100
committervarac <varacanero@zeromail.org>2014-02-13 17:22:18 +0100
commit761fe6f40058612d6ac0ce88103c9a4f35877ef8 (patch)
treecdacb4408633076fde04213fd27a48aa6c990a2e /puppet/modules/site_sshd/manifests/init.pp
parent251c250fe5cf44c99a74d4359cb29b0bf165f3af (diff)
parentc1d1d9d7cf6fefd1203cc09a66c2e0230b930b5e (diff)
Merge branch 'fix_develop' into develop
This was needed so current develop plays nicely with latest leap_cli.
Diffstat (limited to 'puppet/modules/site_sshd/manifests/init.pp')
-rw-r--r--puppet/modules/site_sshd/manifests/init.pp18
1 files changed, 18 insertions, 0 deletions
diff --git a/puppet/modules/site_sshd/manifests/init.pp b/puppet/modules/site_sshd/manifests/init.pp
index 90dd2d0e..d9bc1d51 100644
--- a/puppet/modules/site_sshd/manifests/init.pp
+++ b/puppet/modules/site_sshd/manifests/init.pp
@@ -1,5 +1,6 @@
class site_sshd {
$ssh = hiera_hash('ssh')
+ $hosts = hiera('hosts', '')
##
## SETUP AUTHORIZED KEYS
@@ -12,6 +13,23 @@ class site_sshd {
}
##
+ ## SETUP KNOWN HOSTS and SSH_CONFIG
+ ##
+
+ file {
+ '/etc/ssh/ssh_known_hosts':
+ owner => root,
+ group => root,
+ mode => '0644',
+ content => template('site_sshd/ssh_known_hosts.erb');
+ '/etc/ssh/ssh_config':
+ owner => root,
+ group => root,
+ mode => '0644',
+ content => template('site_sshd/ssh_config.erb');
+ }
+
+ ##
## OPTIONAL MOSH SUPPORT
##