From 22503e6b72c61ede11f065f95183d55da3119c08 Mon Sep 17 00:00:00 2001 From: Ahmed Abdelhalim Date: Wed, 7 Jan 2026 19:15:05 +0100 Subject: Add bluetui role to setup bluetooth on arch linux --- roles/bluetui/tasks/main.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 roles/bluetui/tasks/main.yml (limited to 'roles/bluetui/tasks') diff --git a/roles/bluetui/tasks/main.yml b/roles/bluetui/tasks/main.yml new file mode 100644 index 00000000..6358cb2a --- /dev/null +++ b/roles/bluetui/tasks/main.yml @@ -0,0 +1,11 @@ +--- +- name: "Ensure bluetooth, bluetui and bluetoothctl packages are installed" + become: true + ansible.builtin.package: + name: + - "bluez" + - "bluez-utils" + - "bluetui" + state: "present" + notify: + - "Start bluetooth" -- cgit v1.2.3