summaryrefslogtreecommitdiff
path: root/manifests/client.pp
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2009-12-27 16:53:19 -0200
committerSilvio Rhatto <rhatto@riseup.net>2009-12-27 16:53:19 -0200
commit27bcf5e48905eff1e48b93f911e483ad1f2e0770 (patch)
tree73453864b4676a7e254632eca7b14e50137b5356 /manifests/client.pp
parent3955383bb6e89a3f9d26d5fd2df24cae37c2fa89 (diff)
Always including sshd::client::base
Diffstat (limited to 'manifests/client.pp')
-rw-r--r--manifests/client.pp3
1 files changed, 2 insertions, 1 deletions
diff --git a/manifests/client.pp b/manifests/client.pp
index b650244..e3a12cb 100644
--- a/manifests/client.pp
+++ b/manifests/client.pp
@@ -1,12 +1,13 @@
# manifests/client.pp
class sshd::client {
+ include sshd::client::base
case $operatingsystem {
debian: { include sshd::client::debian }
default: {
case $kernel {
linux: { include sshd::client::linux }
- default: { include sshd::client::base }
+ default: { }
}
}
}