13 lines
217 B
YAML
13 lines
217 B
YAML
- name: install bluetooth
|
|
become: yes
|
|
community.general.pacman:
|
|
name:
|
|
- blueman
|
|
|
|
- name: "Enable service"
|
|
become: yes
|
|
ansible.builtin.systemd:
|
|
name: bluetooth
|
|
state: started
|
|
enabled: yes
|