aboutsummaryrefslogtreecommitdiff
path: root/manifests/subsystems/utils/laptop.pp
blob: db19b776233fc1a8fe82d9b912218b1fca814fe8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Common utilities for laptop
class utils::laptop {
  package { [ 'cpufrequtils',  'module-assistant', 'wireless-tools', 
              'wpasupplicant', 'ekiga',            'gnome',
              'revelation',    'wicd',             'wicd-curses',
              'iw',            'wvdial',           'wavemon',
              'btscanner' ]:
    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,
  }
}