Re: [Puppet Users] nested modules and autoloading

2012-09-28 Thread Tim Mooney
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

Re: [Puppet Users] nested modules and autoloading

2012-09-28 Thread Martin Alfke
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', } }