dots/puppet/production/manifests/site.pp
2017-06-04 23:56:56 -07:00

16 lines
425 B
ObjectPascal

## site.pp ##
# DEFAULT NODE
# The default node definition matches any node lacking a more specific node
# definition. If there are no other nodes in this file, classes declared here
# will be included in every node's catalog, *in addition* to any classes
# specified in the via an ENC for that node.
node default {
notify{'This is from the default node.':}
}
node 'dawns-macbook-pro' {
include ::role::workstation
}