mirror of
https://github.com/genebean/dots.git
synced 2026-03-27 09:27:44 -04:00
16 lines
367 B
Puppet
16 lines
367 B
Puppet
# Includes all the profiles needed for a workstation
|
|
class role::workstation {
|
|
include profile::base
|
|
|
|
case $facts['kernel'] {
|
|
'Darwin': {
|
|
include profile::mac
|
|
}
|
|
'Linux': {
|
|
include profile::linux
|
|
}
|
|
default: {
|
|
fail("${facts['kernel']} hasn't been setup in the workstation role yet.")
|
|
}
|
|
} # end of kernel case statement
|
|
}
|