From: Silvio Rhatto Date: Wed, 3 Jul 2024 03:46:13 +0000 (-0300) Subject: Feat: adds nodo::utils::multimedia::bluetooth X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=0ee11a12ad2a21d4c68eff3f25b4819331b69894;p=puppet-nodo.git Feat: adds nodo::utils::multimedia::bluetooth --- 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, + } +}