15 lines
290 B
YAML
15 lines
290 B
YAML
- name: "[Arch] install bluetooth"
|
|
when: ansible_distribution == "Archlinux"
|
|
become: yes
|
|
community.general.pacman:
|
|
name:
|
|
- blueman
|
|
- bluez
|
|
|
|
- name: "[All] Enable service"
|
|
become: yes
|
|
ansible.builtin.systemd:
|
|
name: bluetooth
|
|
state: started
|
|
enabled: yes
|