Issue #21459 has been updated by Dean Wilson.
This is a possible option - https://github.com/deanwilson/puppet/compare/issue-21459 Does this cover enough of the usecase to warrant a pull request? ---------------------------------------- Bug #21459: puppet describe --list requires the description to include a period https://projects.puppetlabs.com/issues/21459#change-97395 * Author: Ben Ford * Status: Accepted * Priority: Normal * Assignee: David Lutterkort * Category: Faces * Target version: * Affected Puppet version: * Keywords: description * Branch: ---------------------------------------- Given this code: Puppet::Type.newtype(:rcsrepo) do desc 'A local version control repository' ensurable ... end I see this behavior. [root@master ~]# puppet describe --list | grep rcsrepo rcsrepo - .. no documentation .. [root@master ~]# puppet describe rcsrepo rcsrepo ======= A local version control repository If I add a period at the end, `puppet describe --list` outputs as expected. See [https://github.com/puppetlabs/puppet/blob/master/lib/puppet/application/describe.rb#L73](https://github.com/puppetlabs/puppet/blob/master/lib/puppet/application/describe.rb#L73) Why is this? -- You have received this notification because you have either subscribed to it, or are involved in it. To change your notification preferences, please click here: http://projects.puppetlabs.com/my/account -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/puppet-bugs. For more options, visit https://groups.google.com/groups/opt_out.
