Install pinentry-powershell to wsl
This commit is contained in:
parent
9777b74f64
commit
c76e96d1c1
29
roles/pinentry-wsl/tasks/main.yaml
Normal file
29
roles/pinentry-wsl/tasks/main.yaml
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
---
|
||||||
|
- name: ensure user/bin exists
|
||||||
|
become_user: "{{ account.name }}"
|
||||||
|
file:
|
||||||
|
path: "/home/{{ account.name }}/bin"
|
||||||
|
state: directory
|
||||||
|
mode: "0777"
|
||||||
|
|
||||||
|
- name: download script
|
||||||
|
become_user: "{{ account.name }}"
|
||||||
|
get_url:
|
||||||
|
url: https://github.com/diablodale/pinentry-wsl-ps1/raw/master/pinentry-wsl-ps1.sh
|
||||||
|
dest: "/home/{{ account.name }}/bin/pinentry-wsl-ps1.sh"
|
||||||
|
mode: "0755"
|
||||||
|
|
||||||
|
- name: ensure gpg-agent is installed
|
||||||
|
apt:
|
||||||
|
name: gpg-agent
|
||||||
|
state: latest
|
||||||
|
|
||||||
|
- name: enable script in gpg-agent
|
||||||
|
become_user: "{{ account.name }}"
|
||||||
|
lineinfile:
|
||||||
|
path: "/home/{{ account.name }}/.gnupg/gpg-agent.conf"
|
||||||
|
create: yes
|
||||||
|
regexp: "^pinentry-program"
|
||||||
|
line: "pinentry-program /home/{{ account.name }}/bin/pinentry-wsl-ps1.sh"
|
||||||
|
|
||||||
|
|
@ -15,3 +15,4 @@
|
|||||||
- zsh
|
- zsh
|
||||||
- neovim
|
- neovim
|
||||||
- tools
|
- tools
|
||||||
|
- pinentry-wsl
|
||||||
|
Reference in New Issue
Block a user