]> gitweb.fluxo.info Git - puppet-sshd.git/commitdiff
typo in definition
authormh <mh@d66ca3ae-40d7-4aa7-90d4-87d79ca94279>
Sun, 17 Feb 2008 20:50:47 +0000 (20:50 +0000)
committermh <mh@d66ca3ae-40d7-4aa7-90d4-87d79ca94279>
Sun, 17 Feb 2008 20:50:47 +0000 (20:50 +0000)
git-svn-id: https://svn/ipuppet/trunk/modules/sshd@825 d66ca3ae-40d7-4aa7-90d4-87d79ca94279

manifests/init.pp

index 86c984303ae2aecebde8f634d14bb9feae67863e..88d25e691d6a902b72f2efae682bcc6c25532a1f 100644 (file)
@@ -44,7 +44,7 @@ class sshd {
        }
 }
 
-define sshd::sshd_config (
+define sshd::sshd_config(
        $source => ''
 ){
        $real_source = $source ? {
@@ -52,7 +52,7 @@ define sshd::sshd_config (
                default => $source,
        }
 
-    $real_allowed_users = $sshd_allowed_users ? {
+    $real_allowed_users = $sshd_allowed_users ? {
         ''  => 'root',
         default => $sshd_allowed_users,
     }