By setting the `desired_package_state` variable we can change if ansible should only ensure that the packages exist on the system (`present`) or that they are also updated to their latest version (`latest`).
16 lines
380 B
YAML
16 lines
380 B
YAML
- name: Install bluetooth packages
|
|
community.general.xbps:
|
|
name:
|
|
- bluez
|
|
state: "{{ desired_package_state | default('present') }}"
|
|
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
|