summaryrefslogtreecommitdiff
path: root/manifests/client.pp
diff options
context:
space:
mode:
authormh <mh@d66ca3ae-40d7-4aa7-90d4-87d79ca94279>2008-07-17 18:17:52 +0000
committermh <mh@d66ca3ae-40d7-4aa7-90d4-87d79ca94279>2008-07-17 18:17:52 +0000
commit9fc6a0baf38651d2e1673e6deb47153fe9348b75 (patch)
tree99f307de500553dda8a80cacee65a08beea50f48 /manifests/client.pp
parent8f006bb6a08fc95da6fa424f2c1dc746789426c5 (diff)
added exporting and collecting of ssh keys
Taken from David Schmitts ssh module: http://git.black.co.at/?p=module-ssh git-svn-id: https://svn/ipuppet/trunk/modules/sshd@1877 d66ca3ae-40d7-4aa7-90d4-87d79ca94279
Diffstat (limited to 'manifests/client.pp')
-rw-r--r--manifests/client.pp28
1 files changed, 28 insertions, 0 deletions
diff --git a/manifests/client.pp b/manifests/client.pp
new file mode 100644
index 0000000..f0b05c5
--- /dev/null
+++ b/manifests/client.pp
@@ -0,0 +1,28 @@
+# manifests/client.pp
+
+class sshd::client {
+ case $operatingsystem {
+ debian: { include sshd::client::debian }
+ default: { include sshd::client::base }
+ }
+}
+
+class sshd::client::base {
+ package {'openssh-clients':
+ ensure => installed,
+ }
+
+ # this is needed because the gid might have changed
+ file { '/etc/ssh/ssh_known_hosts':
+ mode => 0644, owner => root, group => 0;
+ }
+
+ # Now collect all server keys
+ Sshkey <<||>>
+}
+
+class sshd::client::debian inherits sshd::client::base {
+ Package['openssh-clients']{
+ name => 'openssh-client',
+ }
+}