diff options
author | James Turnbull <james@lovedthanlost.net> | 2008-07-03 13:45:14 +1000 |
---|---|---|
committer | James Turnbull <james@lovedthanlost.net> | 2008-07-03 13:45:14 +1000 |
commit | 731d0f2291ccf900aab29eabed311607173b70ee (patch) | |
tree | 772c8a16c41501998eaca71e0757433c0498b5d4 /lib/puppet | |
parent | d851a16a3af9dd24f675ad5fcf6dfeba6d6273a2 (diff) | |
download | puppet-731d0f2291ccf900aab29eabed311607173b70ee.tar.gz puppet-731d0f2291ccf900aab29eabed311607173b70ee.tar.xz puppet-731d0f2291ccf900aab29eabed311607173b70ee.zip |
Minor documentation updates for ssh_authorized_key type
Diffstat (limited to 'lib/puppet')
-rw-r--r-- | lib/puppet/type/ssh_authorized_key.rb | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/lib/puppet/type/ssh_authorized_key.rb b/lib/puppet/type/ssh_authorized_key.rb index a95f316af..3a12e95ad 100644 --- a/lib/puppet/type/ssh_authorized_key.rb +++ b/lib/puppet/type/ssh_authorized_key.rb @@ -5,14 +5,14 @@ module Puppet ensurable newparam(:name) do - desc "The ssh key comment." + desc "The SSH key comment." isnamevar end newproperty(:type) do - desc "The encryption type used. Probably ssh-dss or ssh-rsa for - ssh version 2. Not used for ssh version 1." + desc "The encryption type used. Usually ssh-dss or ssh-rsa for + SSH version 2. Not used for SSH version 1." newvalue("ssh-dss") newvalue("ssh-rsa") @@ -26,7 +26,7 @@ module Puppet end newproperty(:user) do - desc "The user account in which the ssh key should be installed." + desc "The user account in which the SSH key should be installed." def value=(value) @resource[:target] = File.expand_path("~%s/.ssh/authorized_keys" % value) @@ -35,12 +35,12 @@ module Puppet end newproperty(:target) do - desc "The file in which to store the ssh key." + desc "The file in which to store the SSH key." end newproperty(:options, :array_matching => :all) do - desc "Key options, see sshd(8) for possible values. Multiple values - should be specified as an array." + desc "Key options, see sshd(8) for possible values. Multiple values + should be specified as an array." defaultto do :absent end end |