diff options
-rw-r--r-- | manifests/utils.pp | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/manifests/utils.pp b/manifests/utils.pp index 22c115c..3e30471 100644 --- a/manifests/utils.pp +++ b/manifests/utils.pp @@ -1,7 +1,12 @@ # Common utilities class nodo::utils inherits nodo::utils::base { - package { [ 'vim-nox', 'debian-security-support' ]: - ensure => installed, + package { [ 'vim-nox' ]: + + package { 'debian-security-support' : + ensure => $::lsbdistcodename ? { + 'trusty' => absent, + default => present, + }, } # Might be defined elsewhere |