From e4f2a41e1fa5f46a02931a1bb31d4ce94557dfe7 Mon Sep 17 00:00:00 2001 From: Adam Goldsmith Date: Tue, 11 Jan 2022 23:38:20 -0500 Subject: [PATCH] Remove old GnuPG setup, replaced by systemd socket activation --- .profile | 22 ---------------------- 1 file changed, 22 deletions(-) diff --git a/.profile b/.profile index 07136b8..1699aa2 100644 --- a/.profile +++ b/.profile @@ -1,25 +1,3 @@ #-*- mode: sh; -*- source $HOME/.zshenv - -# Gnupg setup -if hash gpg-agent 2>/dev/null -then - # Start the gpg-agent if not already running - if ! pgrep -x -u "${USER}" gpg-agent >/dev/null 2>&1; then - gpg-connect-agent /bye >/dev/null 2>&1 - fi - - # Set SSH to use gpg-agent - unset SSH_AGENT_PID - if [ "${gnupg_SSH_AUTH_SOCK_by:-0}" -ne $$ ]; then - export SSH_AUTH_SOCK="/run/user/$UID/gnupg/S.gpg-agent.ssh" - fi - - # Set GPG TTY - GPG_TTY=$(tty) - export GPG_TTY - - # Refresh gpg-agent tty in case user switches into an X session - gpg-connect-agent updatestartuptty /bye >/dev/null -fi