summaryrefslogtreecommitdiff
path: root/manifests
diff options
context:
space:
mode:
authorMicah Anderson <micah@riseup.net>2008-09-30 21:04:46 -0400
committerMicah Anderson <micah@riseup.net>2008-09-30 21:04:46 -0400
commit90f14f4ae47fcd279d64da1fa9e169197a884912 (patch)
treea8b13a80a382ce7d374f47e95d6dcadc910c6644 /manifests
parent16dd74a7de341c0e8bf385b7bd8d0e082f7342bb (diff)
parentfce684ca587dd891b7d912be9448888ee18f39c0 (diff)
Merge commit 'ng/master'
Diffstat (limited to 'manifests')
-rw-r--r--manifests/client.pp19
-rw-r--r--manifests/init.pp1
2 files changed, 13 insertions, 7 deletions
diff --git a/manifests/client.pp b/manifests/client.pp
index f0b05c5..34308b4 100644
--- a/manifests/client.pp
+++ b/manifests/client.pp
@@ -3,15 +3,16 @@
class sshd::client {
case $operatingsystem {
debian: { include sshd::client::debian }
- default: { include sshd::client::base }
+ default: {
+ case $kernel {
+ linux: { include sshd::client::linux }
+ 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;
@@ -21,7 +22,13 @@ class sshd::client::base {
Sshkey <<||>>
}
-class sshd::client::debian inherits sshd::client::base {
+class sshd::client::linux inherits sshd::client::base {
+ package {'openssh-clients':
+ ensure => installed,
+ }
+}
+
+class sshd::client::debian inherits sshd::client::linux {
Package['openssh-clients']{
name => 'openssh-client',
}
diff --git a/manifests/init.pp b/manifests/init.pp
index 96e6d08..55a2714 100644
--- a/manifests/init.pp
+++ b/manifests/init.pp
@@ -210,7 +210,6 @@ class sshd::base {
type => ssh-rsa,
key => $sshrsakey_key,
ensure => present,
- require => Package["openssh-clients"],
}
}
}