Remove .sh ext

This commit is contained in:
John Internet 2020-01-02 15:57:06 +00:00
parent 539d248dc2
commit 8a8eb3a7f3
6 changed files with 34 additions and 3 deletions

7
agent-start Normal file
View file

@ -0,0 +1,7 @@
#!/bin/sh
# Start the SSH agent if it isn't already.
if [ -z "$SSH_AGENT_PID" ]; then
eval $(ssh-agent) > /dev/null
echo "$SSH_AGENT_PID" > /tmp/ssh-agent-id
fi