diff options
-rw-r--r-- | manifests/subsystems/utils.pp | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/manifests/subsystems/utils.pp b/manifests/subsystems/utils.pp index 9c783b0..b42e914 100644 --- a/manifests/subsystems/utils.pp +++ b/manifests/subsystems/utils.pp @@ -54,10 +54,13 @@ class utils::personal { ensure => installed, } - if $operatingsystem == 'debian' { - package { [ 'mozilla-firefox-adblock', 'iceweasel', 'sun-java6-jre', ]: - ensure => installed, + case $operatingsystem { + debian: { + package { [ 'mozilla-firefox-adblock', 'iceweasel', 'sun-java6-jre', ]: + ensure => installed, + } } + default: { } } # Gem packages |