]> gitweb.fluxo.info Git - puppet-sshd.git/commitdiff
fixed typo
authormh <mh@d66ca3ae-40d7-4aa7-90d4-87d79ca94279>
Thu, 27 Dec 2007 15:53:51 +0000 (15:53 +0000)
committermh <mh@d66ca3ae-40d7-4aa7-90d4-87d79ca94279>
Thu, 27 Dec 2007 15:53:51 +0000 (15:53 +0000)
git-svn-id: https://svn/ipuppet/trunk/modules/sshd@332 d66ca3ae-40d7-4aa7-90d4-87d79ca94279

manifests/init.pp

index e10a583f338e3b1e40eb58c698609140b9c11ce9..8d574fb057a3150235f574bbd9885ee587fe4d53 100644 (file)
@@ -27,7 +27,7 @@ class sshd {
 
 define sshd::sshd_config (
        $source = "",
-       $allowed_users => 'root'
+       $allowed_users = 'root'
 ){
        $real_source = $source ? {
                '' => "${operatingsystem}_normal.erb",
@@ -39,7 +39,7 @@ define sshd::sshd_config (
                 owner => root,
                 group => 0,
                 mode => 600,
-                source => template("sshd/sshd_config/$real_source"),
+                source => template("sshd/sshd_config/${real_source}"),
                notify => Service[sshd],
         }
 }