1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# Common utilities for debian laptops
class nodo::utils::laptop::debian {
include nodo::utils::storage::layer
package { [ 'cpufrequtils', 'module-assistant', 'wireless-tools',
'wpasupplicant', 'ekiga', 'mumble',
'arp-scan', 'usb-modeswitch',
'iw', 'wvdial', 'wavemon',
'btscanner', 'laptop-mode-tools', 'acpi-support',
'tftp', 'sharutils', 'wireshark',
'macchanger', 'weplab', 'wpagui',
'gnokii', 'sslstrip', 'uswsusp',
'tcpdump', 'tshark' ]:
ensure => installed,
}
}
|