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