]> gitweb.fluxo.info Git - puppet-nodo.git/commitdiff
Feat: adds nodo::utils::multimedia::bluetooth
authorSilvio Rhatto <rhatto@riseup.net>
Wed, 3 Jul 2024 03:46:13 +0000 (00:46 -0300)
committerSilvio Rhatto <rhatto@riseup.net>
Wed, 3 Jul 2024 03:46:13 +0000 (00:46 -0300)
manifests/utils/multimedia/bluetooth.pp [new file with mode: 0644]

diff --git a/manifests/utils/multimedia/bluetooth.pp b/manifests/utils/multimedia/bluetooth.pp
new file mode 100644 (file)
index 0000000..8d3c74a
--- /dev/null
@@ -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,
+  }
+}