1
0
Fork 0
mirror of https://github.com/roles-ansible/ansible_role_gopass.git synced 2024-09-14 20:06:42 +02:00
ansible_role_gopass/tasks/gopass-install/install-on-archlinux.yml

59 lines
1.3 KiB
YAML
Raw Normal View History

2023-09-29 21:42:25 +02:00
---
- name: Install requirements for gopass
become: true
community.general.pacman:
name: "{{ item }}"
state: present
update_cache: true
with_items:
- git
- gnupg
- rng-tools
- xsel
- xclip
- xorg-xclipboard
- name: Install Gopass
community.general.pacman:
name: "{{ item }}"
state: present
become: true
with_items:
- gopass
- name: Install gopass-jsonapi for browser integration
community.general.pacman:
name: "{{ item }}"
state: present
become: true
with_items:
- gopass-jsonapi
when: gopass__install_jsonapi | bool
- name: Install gopass-hibp for haveibeenpwnd.com integration
community.general.pacman:
name: "{{ item }}"
state: present
become: true
with_items:
- gopass-hibp
when: gopass__install_haveibeenpwnd | bool
- name: Install git-credential-gopass as git-credentials helper
community.general.pacman:
name: "{{ item }}"
state: present
become: true
with_items:
- git-credential-gopass
when: gopass__install_git_credential | bool
- name: Install zbar-tools for QR CodeReading using OTP Secrets
community.general.pacman:
name: "{{ item }}"
state: present
become: true
with_items:
- zbar-tools
when: gopass__install_zbar_tools | bool