16 lines
310 B
YAML
16 lines
310 B
YAML
---
|
|
# Bluetooth
|
|
- name: Ensure bluetooth installed and configured
|
|
community.general.pacman:
|
|
name:
|
|
- bluez
|
|
- bluez-utils
|
|
state: present
|
|
become: yes
|
|
- name: Ensure bluetooth service started
|
|
ansible.builtin.systemd:
|
|
name: bluetooth
|
|
state: started
|
|
enabled: yes
|
|
become: yes
|