more fixs being done

This commit is contained in:
Matthew Stobbs
2025-02-21 09:54:07 -07:00
parent 481385af57
commit 4b995a3c07
16 changed files with 162 additions and 95 deletions

View File

@@ -2,18 +2,18 @@
---
- name: Append to flatpkgs
when:
- bw.method == 'flatpak'
- bitwarden.method == 'flatpak'
ansible.builtin.set_fact:
pkg_flatpak: "{{ pkg_flatpak + [bw.pkg] }}"
pkg_flatpak: "{{ pkg_flatpak + [bitwarden.pkg] }}"
- name: Append to srcpkgs
when:
- bw.method == 'appimage'
- bitwarden.method == 'appimage'
ansible.builtin.set_fact:
pkg_appimage: "{{ pkg_appimage + [bw.pkg] }}"
pkg_appimage: "{{ pkg_appimage + [bitwarden.pkg] }}"
- name: Append to caskpkgs
when:
- bw.method == 'brew'
- bitwarden.method == 'brew'
ansible.builtin.set_fact:
pkg_cask: "{{ pkg_cask + [bw.pkg.name] }}"
pkg_cask: "{{ pkg_cask + [bitwarden.pkg.name] }}"