nodes.pp
Submitted by thomas on Wed, 07/29/2009 - 14:55
Nodes are defined with the node keyword. In a node you call the relevant classes with include class. The special node named default is used to specify which class to apply to all nodes that aren't addressed specifically. Our simple setup will have only the default definition.
node default {
include base
}
With this defined, we'll create another manifest for the class base.

WTF
fqdn can go there but default
node host1 { include class1 } node host2.example.com { include class2 } node default { include class1 include class2 }Yes, you include references to any classes you wish to have applied. Have you tried running puppet interactively on the client?