Displaying 1 result from an estimated 1 matches for "special_typ".
Did you mean:
special_type
2012 Sep 28
2
nested modules and autoloading
.... I''ve reviewed
http://docs.puppetlabs.com/puppet/2.7/reference/modules_fundamentals.html
but it doesn''t seem to cover what I''m attempting.
Consider a module layout like this:
$ tree mymodule
mymodule
|-- Modulefile
|-- README
|-- manifests
| |-- init.pp
| |-- special_type
| | `-- prereqs.pp
| `-- special_type.pp
|-- spec
| `-- spec_helper.rb
`-- tests
`-- init.pp
4 directories, 7 files
$ egrep -v ''^#|^$'' mymodule/manifests/init.pp
class mymodule($type = hiera(''mymodule_type'', ''client'')) {
cas...