From 3995e7026dd40778cff1025a8e7e28eec833545f Mon Sep 17 00:00:00 2001 From: Francois Deppierraz Date: Mon, 25 May 2009 09:44:59 +0200 Subject: Fix #2300 - Update ssh_authorized_key documentation --- lib/puppet/type/ssh_authorized_key.rb | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) (limited to 'lib') diff --git a/lib/puppet/type/ssh_authorized_key.rb b/lib/puppet/type/ssh_authorized_key.rb index a16746ac4..52c650998 100644 --- a/lib/puppet/type/ssh_authorized_key.rb +++ b/lib/puppet/type/ssh_authorized_key.rb @@ -6,7 +6,8 @@ module Puppet ensurable newparam(:name) do - desc "The SSH key comment." + desc "The SSH key comment. This attribute is currently used as a + system-wide primary key and therefore has to be unique." isnamevar end @@ -26,11 +27,15 @@ 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. + The resource will automatically depend on this user." end newproperty(:target) do - desc "The file in which to store the SSH key." + desc "The absolute filename in which to store the SSH key. This + property is optional and should only be used in cases where keys + are stored in a non-standard location (ie not in + ~user/.ssh/authorized_keys)." defaultto :absent -- cgit