blob: 8d3c74a5f9c22ca696de74d4a1faafead111bb41 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# https://wiki.debian.org/BluetoothUser
# https://wiki.debian.org/BluetoothUser/a2dp
class nodo::utils::multimedia::bluetooth (
$ensure = 'installed',
) {
package { [
'blueman',
'bluetooth',
'pulseaudio-module-bluetooth',
]:
ensure => $ensure,
}
}
|