mirror of
https://github.com/Matir/skel.git
synced 2026-05-25 21:19:09 -07:00
Chmod only if exists.
This commit is contained in:
@@ -4,13 +4,13 @@ local GPG_ENV=$HOME/.gnupg/gpg-agent.env
|
|||||||
|
|
||||||
function start_agent_nossh {
|
function start_agent_nossh {
|
||||||
eval $(/usr/bin/env gpg-agent --quiet --daemon --write-env-file ${GPG_ENV} 2> /dev/null)
|
eval $(/usr/bin/env gpg-agent --quiet --daemon --write-env-file ${GPG_ENV} 2> /dev/null)
|
||||||
chmod 600 ${GPG_ENV}
|
test -f ${GPG_ENV} && chmod 600 ${GPG_ENV}
|
||||||
export GPG_AGENT_INFO
|
export GPG_AGENT_INFO
|
||||||
}
|
}
|
||||||
|
|
||||||
function start_agent_withssh {
|
function start_agent_withssh {
|
||||||
eval $(/usr/bin/env gpg-agent --quiet --daemon --enable-ssh-support --write-env-file ${GPG_ENV} 2> /dev/null)
|
eval $(/usr/bin/env gpg-agent --quiet --daemon --enable-ssh-support --write-env-file ${GPG_ENV} 2> /dev/null)
|
||||||
chmod 600 ${GPG_ENV}
|
test -f ${GPG_ENV} && chmod 600 ${GPG_ENV}
|
||||||
export GPG_AGENT_INFO
|
export GPG_AGENT_INFO
|
||||||
export SSH_AUTH_SOCK
|
export SSH_AUTH_SOCK
|
||||||
export SSH_AGENT_PID
|
export SSH_AGENT_PID
|
||||||
|
|||||||
Reference in New Issue
Block a user