summaryrefslogtreecommitdiffstats
path: root/roles/bluetui/tasks/main.yml
blob: 6358cb2a4564ee967cb9358e1be66c077c717742 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
---
- name: "Ensure bluetooth, bluetui and bluetoothctl packages are installed"
  become: true
  ansible.builtin.package:
    name:
      - "bluez"
      - "bluez-utils"
      - "bluetui"
    state: "present"
  notify:
    - "Start bluetooth"