From: Silvio Rhatto Date: Sun, 27 Dec 2009 18:53:19 +0000 (-0200) Subject: Always including sshd::client::base X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=27bcf5e48905eff1e48b93f911e483ad1f2e0770;p=puppet-sshd.git Always including sshd::client::base --- 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: { } } } }