[pass] Multi-user pass / group pass

Jason A. Donenfeld Jason at zx2c4.com
Fri Sep 21 02:55:23 CEST 2012


> On Fri, Sep 21, 2012 at 10:46 AM, Lucas Arduini <st_luke at me.com> wrote:
> The Internet is freakin awesome

Haha, indeed.

On Fri, Sep 21, 2012 at 2:47 AM, Simon KP <si at eskp.net> wrote:
> What happens if one person leaves the team and another enters with a new
> key?

It's pretty trivial to re-encrypt the password-store. You can even do
it in a one-liner:

find ~/.password-store -iname '*.gpg' | while read password; do gpg
--batch --quiet -d "$password" | gpg -r "$(head
~/.password-store/.gpg-id)" -e -o "$password.new" --batch --quiet &&
mv -v "$password.new" "$password"; done

Actually, I'll consider adding a switch to "pass init" for this --
something like --reencrypt or --reinit. Suggestions?



More information about the Password-Store mailing list