mirror of
https://github.com/Burnett01/rsync-deployments.git
synced 2024-11-24 00:13:46 +01:00
Add some debug
This commit is contained in:
parent
17bbc35df4
commit
b6a8f25609
1 changed files with 2 additions and 0 deletions
|
@ -1,9 +1,11 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
if [ ! -z "$SSH_AGENT_PID" ]; then
|
if [ ! -z "$SSH_AGENT_PID" ]; then
|
||||||
|
echo "Var Set"
|
||||||
ssh-agent -k
|
ssh-agent -k
|
||||||
exit $?
|
exit $?
|
||||||
elif [ -f "/tmp/ssh-agent-id" ]; then
|
elif [ -f "/tmp/ssh-agent-id" ]; then
|
||||||
|
echo "File Exists"
|
||||||
SSH_AGENT_PID=$(cat /tmp/ssh-agent-id)
|
SSH_AGENT_PID=$(cat /tmp/ssh-agent-id)
|
||||||
ssh-agent -k
|
ssh-agent -k
|
||||||
exit $?
|
exit $?
|
||||||
|
|
Loading…
Reference in a new issue