move a lot of configuration around

This commit is contained in:
Matthew Stobbs
2025-02-11 20:22:42 -07:00
parent 275f5df722
commit 6d52cc6a4d
33 changed files with 180 additions and 117 deletions

View File

@@ -10,7 +10,7 @@
ansible.builtin.file:
state: directory
mode: '0755'
path: "{{ bw_instdir }}"
path: "{{ apimage_pfx }}/bitwarden"
owner: "{{ bw_owner }}"
group: "{{ bw_group }}"
@@ -19,13 +19,13 @@
mode: '0755'
decompress: false
backup: true
url: bw_appimg.url
dest: "{{ bw_instdir }}/{{ bw_appimg.name }}"
url: "{{ bw.appimg.url }}"
dest: "{{ appimage_pfx }}/{{ bw.appimg.name }}"
owner: "{{ bw_owner }}"
group: "{{ bw_group }}"
- name: Link bitwarden appimage
ansible.builtin.file:
state: link
src: "{{ bw_instdir }}/{{ bw_appimg.name }}"
path: "{{ bw_instpfx }}/bin/bitwarden"
src: "{{ appimage_pfx }}/{{ bw.appimg.name }}"
path: "{{ bw.bindir }}/bitwarden"