On Feb 2, 2:55 am, Denmat <tu2bg...@gmail.com> wrote:
> Hi,
>
> You will need to provide more detail as to what you are doing. We have no 
> idea what the following does:
>
> > testclass.pp
> or
> > testmanifest.rb
>
> Loosely speaking puppet will rescan files in /etc/puppet without the need to 
> restart the master (depending on your version of puppet).


Yes, but also Puppet will not autoload manifest files from manifests/
services/, and I think not even from manifests/.  If you put your
manifests in those places then you need to 'import' them for Puppet to
be able to see their contents.  It would be far better, however, to
put substantially all manifests into modules, following the standard
module layout, so that the autoloader can find them.

That could look like this:

1) testclass.pp goes in modules/test/manifests/
2) an empty init.pp also goes in modules/test/manifests/
3) testclass.pp contains a single class named 'test::testclass'

Node definitions would then assign that class by

include 'test::testclass'

or possibly

class { 'test::testclass': }


John

-- 
You received this message because you are subscribed to the Google Groups 
"Puppet Users" group.
To post to this group, send email to puppet-users@googlegroups.com.
To unsubscribe from this group, send email to 
puppet-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/puppet-users?hl=en.

Reply via email to