2024-05-08 02:22:00 +02:00
|
|
|
- name: "[Arch] install bluetooth"
|
|
|
|
when: ansible_distribution == "Archlinux"
|
2024-01-25 11:56:08 +01:00
|
|
|
become: yes
|
|
|
|
community.general.pacman:
|
|
|
|
name:
|
|
|
|
- blueman
|
2024-05-11 12:55:24 +02:00
|
|
|
- bluez
|
2024-12-21 00:54:31 +01:00
|
|
|
- bluez-utils
|
2024-01-25 11:56:08 +01:00
|
|
|
|
2024-05-08 02:22:00 +02:00
|
|
|
- name: "[All] Enable service"
|
2024-01-25 11:56:08 +01:00
|
|
|
become: yes
|
|
|
|
ansible.builtin.systemd:
|
|
|
|
name: bluetooth
|
|
|
|
state: started
|
|
|
|
enabled: yes
|