added brave/gopass stuff plus changed some packages

This commit is contained in:
opal
2024-07-07 10:42:51 -07:00
parent c6e7b72e14
commit c129987f29
6 changed files with 73 additions and 6 deletions
+29
View File
@@ -0,0 +1,29 @@
---
- name: Add Gopass archive keyring
apt_key:
url: https://packages.gopass.pw/repos/gopass/gopass-archive-keyring.gpg
state: present
keyring: /usr/share/keyrings/gopass-archive-keyring.gpg
- name: Add Gopass sources list
copy:
dest: /etc/apt/sources.list.d/gopass.sources
content: |
Types: deb
URIs: https://packages.gopass.pw/repos/gopass
Suites: stable
Architectures: all amd64 arm64 armhf
Components: main
Signed-By: /usr/share/keyrings/gopass-archive-keyring.gpg
owner: root
group: root
mode: '0644'
- name: Install Gopass and archive keyring
apt:
update_cache: yes
name:
- gopass
- gopass-archive-keyring
state: present
+1
View File
@@ -0,0 +1 @@
---