diff options
author | Todd Zullinger <tmz@pobox.com> | 2009-12-04 16:08:40 -0500 |
---|---|---|
committer | James Turnbull <james@lovedthanlost.net> | 2009-12-05 23:01:12 +1100 |
commit | de16fd35ef66ce19c2ef00b04882de138a056a6c (patch) | |
tree | 4194dd7b0a1b100f37c957a8918e51f9811a7b47 | |
parent | d1fa7cf46072f601d433363912eed13ddfe5d4d7 (diff) | |
download | puppet-de16fd35ef66ce19c2ef00b04882de138a056a6c.tar.gz puppet-de16fd35ef66ce19c2ef00b04882de138a056a6c.tar.xz puppet-de16fd35ef66ce19c2ef00b04882de138a056a6c.zip |
Updated yumrepo type documentation
-rw-r--r-- | lib/puppet/type/yumrepo.rb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/puppet/type/yumrepo.rb b/lib/puppet/type/yumrepo.rb index 39b9cd30a..51ed17bff 100644 --- a/lib/puppet/type/yumrepo.rb +++ b/lib/puppet/type/yumrepo.rb @@ -233,12 +233,14 @@ module Puppet end newparam(:name) do - desc "The name of the repository." + desc "The name of the repository. This corresponds to the + repositoryid parameter in yum.conf(5)." isnamevar end newproperty(:descr, :parent => Puppet::IniProperty) do desc "A human readable description of the repository. + This corresponds to the name parameter in yum.conf(5). #{ABSENT_DOC}" newvalue(:absent) { self.should = :absent } newvalue(/.*/) { } |