aboutsummaryrefslogtreecommitdiff
path: root/manifests
diff options
context:
space:
mode:
authormh <mh@d66ca3ae-40d7-4aa7-90d4-87d79ca94279>2008-02-17 20:50:47 +0000
committermh <mh@d66ca3ae-40d7-4aa7-90d4-87d79ca94279>2008-02-17 20:50:47 +0000
commit021e331ccb776a04bcd1738ec61c4df92f7dc2c2 (patch)
treee201af00918977b12afc43533fdc4a626309fd3b /manifests
parent691e1c759d5410bfcb3ab440576b076b67121d11 (diff)
downloadpuppet-sshd-021e331ccb776a04bcd1738ec61c4df92f7dc2c2.tar.gz
puppet-sshd-021e331ccb776a04bcd1738ec61c4df92f7dc2c2.tar.bz2
typo in definition
git-svn-id: https://svn/ipuppet/trunk/modules/sshd@825 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 86c9843..88d25e6 100644
--- a/manifests/init.pp
+++ b/manifests/init.pp
@@ -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,
}