mirror of
https://github.com/Burnett01/rsync-deployments.git
synced 2026-09-27 14:48:17 +00:00
Remove .sh ext
This commit is contained in:
+13
@@ -0,0 +1,13 @@
|
||||
#!/bin/sh
|
||||
|
||||
if [ ! -z "$SSH_AGENT_PID" ]; then
|
||||
ssh-agent -k
|
||||
exit $?
|
||||
elif [ -f "/tmp/ssh-agent-id" ]; then
|
||||
SSH_AGENT_PID=$(cat /tmp/ssh-agent-id)
|
||||
ssh-agent -k
|
||||
exit $?
|
||||
else
|
||||
echo "SSH_AGENT_PID not set, /tmp/ssh-agent-id doesn't exist!" 1>&2
|
||||
exit 1
|
||||
fi
|
||||
Reference in New Issue
Block a user