- name: Uninstall gnome-keyring
apt:
name: gnome-keyring
state: absent
- name: Install Keepassxc
become: true
pkg:
- keepassxc
- libsecret-tools
- name: Create keepassxc config directory
file:
path: ~/.config/keepassxc
state: directory
- name: Copy keepassxc.ini
copy:
src: "{{ role_path }}/files/keepassxc.ini"
dest: ~/.config/keepassxc/keepassxc.ini
- name: Create cache directory
path: ~/.cache/keepassxc
recurse: true
- name: Set SSH_AUTH_SOCK override
ini_file:
path: ~/.cache/keepassxc/keepassxc.ini
section: SSHAgent
option: AuthSockOverride
value: "{{ ssh_agent_socket }}"
no_extra_spaces: true