ref(playbook): Change to role-based structure

This commit is contained in:
Marty Oehme 2025-02-28 20:57:34 +01:00
parent 95fd68bed8
commit b3b280fbe4
Signed by: Marty
GPG key ID: 4E535BC19C61886E
39 changed files with 635 additions and 601 deletions

View file

@ -0,0 +1,16 @@
- name: Install bluetooth packages
community.general.xbps:
name:
- bluez
state: "{{ desired_package_state }}"
tags: packages
- name: Activate bluetooth service
ansible.builtin.file:
force: "yes"
src: "/etc/sv/{{ item }}"
dest: "/etc/runit/runsvdir/default/{{ item }}"
state: link
with_items:
- bluetoothd
- dbus