This repository was archived by the owner on Sep 3, 2021. It is now read-only.
Closed
Conversation
You may want to double check the gpg-agent.conf comment, as I'm not 100% what it's avoiding.
RyanSquared
reviewed
Jun 23, 2017
| if [ -e $HOME/.gnupg/S.gpg-agent.ssh ]; then | ||
| mv $HOME/.gnupg/S.gpg-agent{.ssh,} | ||
| elif [ -e "/var/run/user/$(id -u)/gnupg/S.gpg-agent" ]; then | ||
| elif [ -e "/var/run/user/$(id -u)/gnupg/S.gpg-agent.ssh" ]; then |
Collaborator
There was a problem hiding this comment.
I didn't think the .ssh extension was put on the files. Can you comment as to why you added this?
Collaborator
There was a problem hiding this comment.
@lrvick either this addition is correct or the line below this one needs to be changed to use {,.ssh} instead.
Author
|
Following the pattern of the above line. If it's wrong, I can change it.
…On Jun 23, 2017 3:55 PM, "Ryan" ***@***.***> wrote:
***@***.**** commented on this pull request.
------------------------------
In Use_Cases/SSH.md
<#8 (comment)>
:
> @@ -61,7 +61,7 @@ if [ ! -z "$SSH_TTY" ]; then
# RemoteForward /home/user/.gnupg/S.gpg-agent.ssh /home/user/.gnupg/S.gpg-agent
if [ -e $HOME/.gnupg/S.gpg-agent.ssh ]; then
mv $HOME/.gnupg/S.gpg-agent{.ssh,}
- elif [ -e "/var/run/user/$(id -u)/gnupg/S.gpg-agent" ]; then
+ elif [ -e "/var/run/user/$(id -u)/gnupg/S.gpg-agent.ssh" ]; then
I didn't think the .ssh extension was put on the files. Can you comment
as to why you added this?
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#8 (review)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AAGn1WcBBzXmNLAxiVIZjFhGSs4gua-jks5sHBhHgaJpZM4OD7Nx>
.
|
This pull request was closed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
You may want to double check the gpg-agent.conf comment, as I'm not 100% what it's avoiding.