diff options
author | Gabriel Filion <lelutin@gmail.com> | 2011-01-19 16:41:18 -0500 |
---|---|---|
committer | Gabriel Filion <lelutin@gmail.com> | 2011-01-30 21:15:35 -0500 |
commit | 7224e085a3c362de66364748ea3117e16f03fbcb (patch) | |
tree | 80a26504cecf711ff6be1f7fee7e39cfb4af4a63 /manifests | |
parent | 2188f46db75d74d00ac4a2cb3cdaa34f98d1148d (diff) | |
download | puppet-sshd-7224e085a3c362de66364748ea3117e16f03fbcb.tar.gz puppet-sshd-7224e085a3c362de66364748ea3117e16f03fbcb.tar.bz2 |
Fix inclusion for default os
When the os of a client is not one of those that use a specialized
class, (e.g. FreeBSD) the inclusion is currently broken: it tries to
include sshd::default which does not exist.
Change this to include sshd::base instead.
Signed-off-by: Gabriel Filion <lelutin@gmail.com>
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/init.pp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/manifests/init.pp b/manifests/init.pp index 90b7c64..f37a051 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -251,7 +251,7 @@ class sshd { '': { $sshd_ensure_version = "present" } } - include sshd::client + include sshd::client case $operatingsystem { gentoo: { include sshd::gentoo } @@ -259,7 +259,7 @@ class sshd { centos: { include sshd::centos } openbsd: { include sshd::openbsd } debian,ubuntu: { include sshd::debian } - default: { include sshd::default } + default: { include sshd::base } } if $use_nagios { |