Updated based on puppet-lint gem update

This commit is contained in:
Gene Liverman 2019-12-26 21:17:16 -05:00
parent 65c510a3db
commit 7ed5a47091
No known key found for this signature in database
GPG key ID: 66D794FE7043CBCA
7 changed files with 14 additions and 14 deletions

View file

@ -3,5 +3,5 @@
# are not standing in front of the system and / or there is no graphical
# interface.
class role::server {
include ::profile::base
include profile::base
}

View file

@ -1,13 +1,13 @@
# Includes all the profiles needed for a workstation
class role::workstation {
include ::profile::base
include profile::base
case $facts['kernel'] {
'Darwin': {
include ::profile::mac
include profile::mac
}
'Linux': {
include ::profile::linux
include profile::linux
}
default: {
fail("${facts['kernel']} hasn't been setup in the workstation role yet.")