diff options
author | Diego Rodriguez <drodriguez@opengov.com> | 2019-08-12 13:46:11 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-12 13:46:11 -0600 |
commit | 3ae1656f5dea3d96d582514c496055b2cec7bc8e (patch) | |
tree | 0373b6fa3127ed52ee2f37de22889fe6589339bc /README.md | |
parent | Merge pull request #119 from dbradley771/patch-1 (diff) | |
download | YubiKey-Guide-3ae1656f5dea3d96d582514c496055b2cec7bc8e.tar.gz |
Update README.md
When adding GPG SSH agent configuration to shell rc file, redirect output of gpg-connect-agent to /dev/null so that it doesn't output `OK` every time you bring up a new shell
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1502,7 +1502,7 @@ Add these to the shell `rc` file: ```console export GPG_TTY="$(tty)" export SSH_AUTH_SOCK="/run/user/$UID/gnupg/S.gpg-agent.ssh" -gpg-connect-agent updatestartuptty /bye +gpg-connect-agent updatestartuptty /bye > /dev/null ``` On some systems, you may need to use the following instead: |