NAME
App::Scaffolder::Command::puppetclass - Scaffold one or more related Puppet classes
VERSION
version 0.003001
SYNOPSIS
# Create scaffold to install the 'vim-puppet' package in module created with
# puppetmodule command and 'package' template:
$ scaffolder puppetclass --template subpackage --name vim::puppet --package vim-puppet
# Create scaffold to install the 'apache2-doc' package in module created with
# puppetmodule command and 'service' template:
$ scaffolder puppetclass --template subpackage --name apache2::doc --package apache2-doc
DESCRIPTION
App::Scaffolder::Command::puppetclass scaffolds one or more related Puppet classes. It does not create a complete Puppet module (see App::Scaffolder::Command::puppetmodule for this), it just adds additional (usually closely related) classes to an existing module. By default, it provides the following templates:
subpackage
: Create class to install a 'sub package'. This is intended to be used after using thepackage
orservice
templates of the App::Scaffolder::Command::puppetmodule command to add an additional package to the module (eg.apache2-doc
to theapache2
service). This must be used inside the module directory created before, and you will have to add a variable with the actual package name to the existingmanifests/params.pp
file. The name of the variable can be seen in the newly created files belowmanifests
.
SEE ALSO
AUTHOR
Manfred Stock <mstock@cpan.org>
COPYRIGHT AND LICENSE
This software is copyright (c) 2017 by Manfred Stock.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.