summaryrefslogtreecommitdiff
path: root/manifests
diff options
context:
space:
mode:
authormh <mh@d66ca3ae-40d7-4aa7-90d4-87d79ca94279>2008-02-29 10:41:44 +0000
committermh <mh@d66ca3ae-40d7-4aa7-90d4-87d79ca94279>2008-02-29 10:41:44 +0000
commit5cf8ea7bd75c99a3a2affcce64e233171b391a1d (patch)
treeb344661ef12d48b44762d49c6538888bb7d7cade /manifests
parent7b3047b558206728133887664f36130748e5ce48 (diff)
debug infos
git-svn-id: https://svn/ipuppet/trunk/modules/sshd@886 d66ca3ae-40d7-4aa7-90d4-87d79ca94279
Diffstat (limited to 'manifests')
-rw-r--r--manifests/init.pp10
1 files changed, 6 insertions, 4 deletions
diff --git a/manifests/init.pp b/manifests/init.pp
index e8a67c8..9d0c594 100644
--- a/manifests/init.pp
+++ b/manifests/init.pp
@@ -52,10 +52,12 @@ define sshd::sshd_config(
default => $source,
}
- $real_sshd_allowed_users = $sshd_allowed_users ? {
- '' => 'root',
- default => $sshd_allowed_users,
- }
+ info("sshd_allowed_users is set to ${sshd_allowed_users}")
+
+ $real_sshd_allowed_users = $sshd_allowed_users ? {
+ '' => 'root',
+ default => $sshd_allowed_users,
+ }
file { 'sshd_config':
path => '/etc/ssh/sshd_config',