aboutsummaryrefslogtreecommitdiffstats
path: root/roles/doorputer/tasks/bluetooth.yml
blob: ef64f356720b8207ea00cb04946b93943207bd6a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
---
- name: Disable hciuart service
  systemd:
    name: hciuart.service
    enabled: no
    masked: no
    state: stopped

- name: Disable bluetooth service
  systemd:
    name: bluetooth.service
    enabled: no
    masked: no
    state: stopped

# vim: set ts=2 sw=2 et: