summaryrefslogtreecommitdiff
path: root/puppet/modules/sshd/manifests/client/base.pp
diff options
context:
space:
mode:
Diffstat (limited to 'puppet/modules/sshd/manifests/client/base.pp')
-rw-r--r--puppet/modules/sshd/manifests/client/base.pp15
1 files changed, 15 insertions, 0 deletions
diff --git a/puppet/modules/sshd/manifests/client/base.pp b/puppet/modules/sshd/manifests/client/base.pp
new file mode 100644
index 00000000..4925c2d0
--- /dev/null
+++ b/puppet/modules/sshd/manifests/client/base.pp
@@ -0,0 +1,15 @@
+class sshd::client::base {
+ # this is needed because the gid might have changed
+ file { '/etc/ssh/ssh_known_hosts':
+ ensure => present,
+ mode => '0644',
+ owner => root,
+ group => 0;
+ }
+
+ # Now collect all server keys
+ case $sshd::client::shared_ip {
+ no: { Sshkey <<||>> }
+ yes: { Sshkey <<| tag == fqdn |>> }
+ }
+}