diff options
author | mh <mh@d66ca3ae-40d7-4aa7-90d4-87d79ca94279> | 2008-02-17 20:55:26 +0000 |
---|---|---|
committer | mh <mh@d66ca3ae-40d7-4aa7-90d4-87d79ca94279> | 2008-02-17 20:55:26 +0000 |
commit | 97766401f51cc39d2108d96a678ad982c83290e6 (patch) | |
tree | 554d06737ff401a465072252f539647678e2d614 | |
parent | 021e331ccb776a04bcd1738ec61c4df92f7dc2c2 (diff) | |
download | puppet-sshd-97766401f51cc39d2108d96a678ad982c83290e6.tar.gz puppet-sshd-97766401f51cc39d2108d96a678ad982c83290e6.tar.bz2 |
typo in definition
git-svn-id: https://svn/ipuppet/trunk/modules/sshd@826 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 88d25e6..71f6125 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -45,7 +45,7 @@ class sshd { } define sshd::sshd_config( - $source => '' + $source = '' ){ $real_source = $source ? { '' => "${operatingsystem}_normal.erb", @@ -71,7 +71,7 @@ define sshd::sshd_config( } define sshd::deploy_auth_key( - $source => '', + $source = '', $user = 'root', $target_dir = '/root/.ssh/', $group = '' ) { |