diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2011-02-24 13:45:07 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2011-02-24 13:45:07 -0300 |
commit | 9056f7fbaca589092d3edfe955f7853abc6978d7 (patch) | |
tree | d4350da9df8cbb2d603c7ca14e50d27a128a910f /manifests/subsystems/utils/laptop.pp | |
parent | bbd5cdc8f67f4e8497f5793fa30d8196b5ddc144 (diff) | |
download | puppet-nodo-9056f7fbaca589092d3edfe955f7853abc6978d7.tar.gz puppet-nodo-9056f7fbaca589092d3edfe955f7853abc6978d7.tar.bz2 |
Refactoring utils
Diffstat (limited to 'manifests/subsystems/utils/laptop.pp')
-rw-r--r-- | manifests/subsystems/utils/laptop.pp | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/manifests/subsystems/utils/laptop.pp b/manifests/subsystems/utils/laptop.pp new file mode 100644 index 0000000..682e67f --- /dev/null +++ b/manifests/subsystems/utils/laptop.pp @@ -0,0 +1,21 @@ +# Common utilities for laptop +class utils::laptop { + package { [ 'cpufrequtils', 'module-assistant', 'wireless-tools', + 'wpasupplicant', 'ekiga', 'gnome', + 'revelation', 'wicd', 'iw' ]: + ensure => installed, + } + + # Lenny specific packages + package { [ 'madwifi-source', 'madwifi-tools', 'bluez-gnome' ]: + ensure => $lsbdistcodename ? { + 'lenny' => installed, + default => absent, + } + } + + # Currently no hibernation + package { 'uswsusp': + ensure => absent, + } +} |