diff options
Diffstat (limited to 'manifests/utils/laptop/debian.pp')
-rw-r--r-- | manifests/utils/laptop/debian.pp | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/manifests/utils/laptop/debian.pp b/manifests/utils/laptop/debian.pp index 948a34c..e42b999 100644 --- a/manifests/utils/laptop/debian.pp +++ b/manifests/utils/laptop/debian.pp @@ -13,29 +13,4 @@ class nodo::utils::laptop::debian { 'tcpdump', 'tshark' ]: ensure => installed, } - - $wicd = hiera('nodo::utils::laptop::debian::wicd', 'installed') - $network_manager = hiera('nodo::utils::laptop::debian::network_manager', 'absent') - - # Wicd - package { [ 'wicd', 'wicd-curses', 'wicd-gtk' ]: - ensure => $wicd, - } - - # Network manager - package { 'network-manager': - ensure => $::lsbdistcodename ? { - 'squeeze' => absent, - default => $network_manager, - } - } - - # Squeeze specific packages - package { [ 'kismet' ]: - ensure => $::lsbdistcodename ? { - 'squeeze' => installed, - default => absent, - } - } - } |