dotfiles

Personal dotfiles
git clone https://git.bracken.jp/dotfiles.git
Log | Files | Refs | LICENSE

commit 86ea837f983e3c15ab5878a9fc3377f090900f67
parent dbc979887fa6690e1dca8bce3f9134c49761fa37
Author: Chris Bracken <chris@bracken.jp>
Date:   Sat, 24 Aug 2024 13:22:03 -0700

gpg: set passphrase timeout to 12h up from 2.

Previously, I'd set the default-cache-ttl to 12 hours; however,
max-cache-ttl defaults to 2 hours, which I think was causing the timeout
to be restricted to 2 hours either way.

We now bump both up to 12 hours.

Diffstat:
M.gnupg/gpg-agent.conf | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/.gnupg/gpg-agent.conf b/.gnupg/gpg-agent.conf @@ -1,2 +1,3 @@ -# Timeout gpg keys after 12 hours. +# Override default PIN timeout from 10 mins with a max of 2 hours, to 12 hours. +max-cache-ttl 43200 default-cache-ttl 43200