diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2009-12-27 16:53:19 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2009-12-27 16:53:19 -0200 |
commit | 27bcf5e48905eff1e48b93f911e483ad1f2e0770 (patch) | |
tree | 73453864b4676a7e254632eca7b14e50137b5356 /manifests | |
parent | 3955383bb6e89a3f9d26d5fd2df24cae37c2fa89 (diff) | |
download | puppet-sshd-27bcf5e48905eff1e48b93f911e483ad1f2e0770.tar.gz puppet-sshd-27bcf5e48905eff1e48b93f911e483ad1f2e0770.tar.bz2 |
Always including sshd::client::base
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/client.pp | 3 |
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: { } } } } |