1
0
mirror of https://github.com/dcarrillo/prezto.git synced 2024-07-01 12:50:27 +00:00

Fix coding-style in GPG and SSH agent plugins

This commit is contained in:
Sorin Ionescu 2012-03-07 12:01:05 -05:00
parent 05e86657c3
commit 9c36a5e626
2 changed files with 12 additions and 12 deletions

View File

@ -6,22 +6,22 @@
# Sorin Ionescu <sorin.ionescu@gmail.com> # Sorin Ionescu <sorin.ionescu@gmail.com>
# #
local GPG_ENV="$HOME/.gnupg/gpg-agent.env" _gpg_env="$HOME/.gnupg/gpg-agent.env"
if (( ! $+commands[gpg-agent] )); then if (( ! $+commands[gpg-agent] )); then
return return
fi fi
function _gpg-agent-start() { function _gpg-agent-start() {
/usr/bin/env gpg-agent --daemon --enable-ssh-support --write-env-file "${GPG_ENV}" > /dev/null gpg-agent --daemon --enable-ssh-support --write-env-file "${_gpg_env}"
chmod 600 "${GPG_ENV}" chmod 600 "${_gpg_env}"
source "${GPG_ENV}" > /dev/null source "${_gpg_env}"
} }
# Source GPG agent settings, if applicable. # Source GPG agent settings, if applicable.
if [[ -f "${GPG_ENV}" ]]; then if [[ -f "${_gpg_env}" ]]; then
source "${GPG_ENV}" > /dev/null source "${_gpg_env}"
ps -ef | grep "${SSH_AGENT_PID}" | grep gpg-agent > /dev/null || { ps -ef | grep "${SSH_AGENT_PID}" | grep -q 'gpg-agent' || {
_gpg-agent-start _gpg-agent-start
} }
else else

View File

@ -20,7 +20,7 @@
# zstyle ':omz:plugin:ssh-agent' identities 'id_rsa' 'id_rsa2' 'id_github' # zstyle ':omz:plugin:ssh-agent' identities 'id_rsa' 'id_rsa2' 'id_github'
# #
_ssh_agent_env="$HOME/.ssh/environment-$HOST" _ssh_agent_env="${HOME}/.ssh/environment-${HOST}"
_ssh_agent_forwarding= _ssh_agent_forwarding=
function _ssh-agent-start() { function _ssh-agent-start() {
@ -30,7 +30,7 @@ function _ssh-agent-start() {
rm -f "${_ssh_agent_env}" rm -f "${_ssh_agent_env}"
ssh-agent > "${_ssh_agent_env}" ssh-agent > "${_ssh_agent_env}"
chmod 600 "${_ssh_agent_env}" chmod 600 "${_ssh_agent_env}"
source "${_ssh_agent_env}" > /dev/null source "${_ssh_agent_env}"
# Load identies. # Load identies.
zstyle -a ':omz:plugin:ssh-agent' identities 'identities' zstyle -a ':omz:plugin:ssh-agent' identities 'identities'
@ -40,7 +40,7 @@ function _ssh-agent-start() {
if [[ ! -n "${identities}" ]]; then if [[ ! -n "${identities}" ]]; then
ssh-add ssh-add
else else
ssh-add "$HOME/.ssh/${^identities}" ssh-add "${HOME}/.ssh/${^identities}"
fi fi
} }
@ -51,8 +51,8 @@ if is-true "${_ssh_agent_forwarding}" && [[ -n "$SSH_AUTH_SOCK" ]]; then
[[ -L "$SSH_AUTH_SOCK" ]] || ln -sf "$SSH_AUTH_SOCK" /tmp/ssh-agent-$USER-screen [[ -L "$SSH_AUTH_SOCK" ]] || ln -sf "$SSH_AUTH_SOCK" /tmp/ssh-agent-$USER-screen
elif [ -f "${_ssh_agent_env}" ]; then elif [ -f "${_ssh_agent_env}" ]; then
# Source SSH settings, if applicable. # Source SSH settings, if applicable.
source "${_ssh_agent_env}" > /dev/null source "${_ssh_agent_env}"
ps -ef | grep "${SSH_AGENT_PID}" | grep ssh-agent$ > /dev/null || { ps -ef | grep "${SSH_AGENT_PID}" | grep -q 'ssh-agent$' || {
_ssh-agent-start; _ssh-agent-start;
} }
else else