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

13 lines
321 B
Puppet

# Includes all the profiles needed for a workstation
class role::workstation {
include ::profile::base
case $facts['kernel'] {
'Darwin': {
include ::profile::mac
}
default: {
fail("${facts['kernel']} hasn't been setup in the workstation role yet.")
}
} # end of kernel case statement
}