In regard to: Re: [Puppet Users] nested modules and autoloading, Martin...:
Hi Tim,
please check your class and file names.
The following is working:
modules/http/manifests/init.pp
class 'http' {
include http::config_file
}
modules/http/manifests/config_file.pp
Hi Tim,
please check your class and file names.
The following is working:
modules/http/manifests/init.pp
class 'http' {
include http::config_file
}
modules/http/manifests/config_file.pp
class http::config_file {
file { '/tmp/http':
content => 'http',
}
}