summaryrefslogtreecommitdiffstats
path: root/roles/bluetui/handlers
diff options
context:
space:
mode:
authorAhmed Abdelhalim <[email protected]>2026-01-07 19:15:05 +0100
committerAhmed Abdelhalim <[email protected]>2026-01-07 19:15:05 +0100
commit22503e6b72c61ede11f065f95183d55da3119c08 (patch)
tree19800326e319f813138d40e2975f7910ff5aed1b /roles/bluetui/handlers
parent15970c6f31f3d836bf4b3037999ca901acef82dd (diff)
Add bluetui role to setup bluetooth on arch linux
Diffstat (limited to 'roles/bluetui/handlers')
-rw-r--r--roles/bluetui/handlers/main.yml7
1 files changed, 7 insertions, 0 deletions
diff --git a/roles/bluetui/handlers/main.yml b/roles/bluetui/handlers/main.yml
new file mode 100644
index 00000000..1c2fe5ef
--- /dev/null
+++ b/roles/bluetui/handlers/main.yml
@@ -0,0 +1,7 @@
+---
+- name: "Start bluetooth"
+ become: true
+ ansible.builtin.systemd_service:
+ name: "bluetooth"
+ enabled: "true"
+ state: "started"