diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2024-07-03 00:46:13 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2024-07-03 00:46:13 -0300 |
commit | 0ee11a12ad2a21d4c68eff3f25b4819331b69894 (patch) | |
tree | 36685b9021c5e5e49ab3fcfe45a9a355190b04cb | |
parent | 1646094e8589fbb12d30753b96c6156e4a714b93 (diff) | |
download | puppet-nodo-0ee11a12ad2a21d4c68eff3f25b4819331b69894.tar.gz puppet-nodo-0ee11a12ad2a21d4c68eff3f25b4819331b69894.tar.bz2 |
Feat: adds nodo::utils::multimedia::bluetooth
-rw-r--r-- | manifests/utils/multimedia/bluetooth.pp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/manifests/utils/multimedia/bluetooth.pp b/manifests/utils/multimedia/bluetooth.pp new file mode 100644 index 0000000..8d3c74a --- /dev/null +++ b/manifests/utils/multimedia/bluetooth.pp @@ -0,0 +1,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, + } +} |