diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2016-03-31 12:54:09 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2016-03-31 12:54:09 -0300 |
commit | 2b667cbc26b5f0f3b4a6be1555b605004b84fdbe (patch) | |
tree | e52a0586c93613f9b0a159cc191e73badfea4b5b /manifests/utils/laptop | |
parent | 3f0d8e30642dbe7d669300cceff8909ac5d0478c (diff) | |
download | puppet-nodo-2b667cbc26b5f0f3b4a6be1555b605004b84fdbe.tar.gz puppet-nodo-2b667cbc26b5f0f3b4a6be1555b605004b84fdbe.tar.bz2 |
Simplify wicd/network-manager handling
Diffstat (limited to 'manifests/utils/laptop')
-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, - } - } - } |