ansible-desktop/roles/desktop/tasks/bluetooth.yml

15 lines
290 B
YAML
Raw Normal View History

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