diff options
author | mh <mh@d66ca3ae-40d7-4aa7-90d4-87d79ca94279> | 2007-12-27 15:53:51 +0000 |
---|---|---|
committer | mh <mh@d66ca3ae-40d7-4aa7-90d4-87d79ca94279> | 2007-12-27 15:53:51 +0000 |
commit | 9cc7c834e4770d83b088a15324702827dbe3c525 (patch) | |
tree | 01b4cd82e5c17841ade834a137d377b2fbdf915d | |
parent | e8a66ad4219a1fbeef8293839963a25b3e2e1d53 (diff) | |
download | puppet-sshd-9cc7c834e4770d83b088a15324702827dbe3c525.tar.gz puppet-sshd-9cc7c834e4770d83b088a15324702827dbe3c525.tar.bz2 |
fixed typo
git-svn-id: https://svn/ipuppet/trunk/modules/sshd@332 d66ca3ae-40d7-4aa7-90d4-87d79ca94279
-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 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], } } |