diff options
| author | Ahmed Abdelhalim <[email protected]> | 2026-01-07 19:15:05 +0100 |
|---|---|---|
| committer | Ahmed Abdelhalim <[email protected]> | 2026-01-07 19:15:05 +0100 |
| commit | 22503e6b72c61ede11f065f95183d55da3119c08 (patch) | |
| tree | 19800326e319f813138d40e2975f7910ff5aed1b /roles/bluetui/tasks/main.yml | |
| parent | 15970c6f31f3d836bf4b3037999ca901acef82dd (diff) | |
Add bluetui role to setup bluetooth on arch linux
Diffstat (limited to 'roles/bluetui/tasks/main.yml')
| -rw-r--r-- | roles/bluetui/tasks/main.yml | 11 |
1 files changed, 11 insertions, 0 deletions
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" |
