How do I include this class all
in all nodes by default?
snippet from my manifests/nodes.pp
class all {
case $operatingsystem {
debian, ubuntu: {
include hosts
include ssh
}
default: {
err("OS NOT supported")
}
}
}
node default {
include all
}
node 'dobby' {
include all ## <<
include apache
include logrotate
}
will inherit all definitions from the node
default
.