Some software allows parameters to be set (e.g. software::vcsscm::git).
It would be nice if the README mentioned how those can be set, so that the suggested, preferred way is known (and Puppet newbies are not left in the dark).
Example
class { 'software::vcsscm::git':
gui => true,
ensure => installed,
}
Is there a nicer, cleaner way?
include software::vcsscm::git
... is definitely nicer, but how set parameters?