-
-
Notifications
You must be signed in to change notification settings - Fork 168
Description
Hi,
I am not sure whether this is the proper place to ask a question or not, if not, please point me in the right direction.
I am trying to set up a remote installation of qtpass (so then all the users can access the tool just by having ssh access) so I do the following:
- Adding this to the bash_profile, so after ssh it will load my ssh keys (to be able to push changes to pass git
if [ -z "$SSH_AUTH_SOCK" ] ; then
eval `ssh-agent -s`
ssh-add
fi
- launch qtpass
But now the problem is that if I do it locally, I will see another window asking me the passphrasse to unlock the GPG key. But it never comes up with my setup.... The only way I have to get it working is by calling the pass, then I will be prompted on the terminal for the GPG passphrasse, so the I can use it.
So it seems it is not forwarding pinentry (I've set up pinentry=/usr/bin/pinentry in the qtpass.conf). For me it would be OK to just prompt me for the curses "style" and enter the passphrasse
Any idea on what is wrong here?