summaryrefslogtreecommitdiff
path: root/manifests
diff options
context:
space:
mode:
authormh <mh@d66ca3ae-40d7-4aa7-90d4-87d79ca94279>2007-12-27 15:53:51 +0000
committermh <mh@d66ca3ae-40d7-4aa7-90d4-87d79ca94279>2007-12-27 15:53:51 +0000
commit9cc7c834e4770d83b088a15324702827dbe3c525 (patch)
tree01b4cd82e5c17841ade834a137d377b2fbdf915d /manifests
parente8a66ad4219a1fbeef8293839963a25b3e2e1d53 (diff)
fixed typo
git-svn-id: https://svn/ipuppet/trunk/modules/sshd@332 d66ca3ae-40d7-4aa7-90d4-87d79ca94279
Diffstat (limited to 'manifests')
-rw-r--r--manifests/init.pp4
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],
}
}