diff options
author | mh <mh@d66ca3ae-40d7-4aa7-90d4-87d79ca94279> | 2008-02-17 20:50:47 +0000 |
---|---|---|
committer | mh <mh@d66ca3ae-40d7-4aa7-90d4-87d79ca94279> | 2008-02-17 20:50:47 +0000 |
commit | 021e331ccb776a04bcd1738ec61c4df92f7dc2c2 (patch) | |
tree | e201af00918977b12afc43533fdc4a626309fd3b | |
parent | 691e1c759d5410bfcb3ab440576b076b67121d11 (diff) | |
download | puppet-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
-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 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, } |