13 lines
353 B
YAML
13 lines
353 B
YAML
# vim: set filetype=yaml.ansible :
|
|
---
|
|
- name: Set bitwarden install method
|
|
ansible.builtin.set_fact:
|
|
bw:
|
|
method: "{{ pkgconfig.bitwarden.method[ansible_distribution] | default('appimage') }}"
|
|
|
|
- name: Set bitwarden config
|
|
ansible.builtin.set_fact:
|
|
bw:
|
|
pkg: "{{ pkgconfig.bitwarden[bw.method] }}"
|
|
method: "{{ bw.method }}"
|