From: mh Date: Thu, 27 Dec 2007 15:53:51 +0000 (+0000) Subject: fixed typo X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=9cc7c834e4770d83b088a15324702827dbe3c525;p=puppet-sshd.git fixed typo git-svn-id: https://svn/ipuppet/trunk/modules/sshd@332 d66ca3ae-40d7-4aa7-90d4-87d79ca94279 --- diff --git a/manifests/init.pp b/manifests/init.pp index e10a583..8d574fb 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -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], } }