mirror of
https://github.com/fscotto/infra.git
synced 2026-05-30 15:39:58 +00:00
12 lines
169 B
Django/Jinja
12 lines
169 B
Django/Jinja
#!/bin/sh
|
|
|
|
set -eu
|
|
|
|
sockdir="{{ user_home }}/.local/state/ssh-agent"
|
|
sockpath="$sockdir/socket"
|
|
|
|
mkdir -p "$sockdir"
|
|
rm -f "$sockpath"
|
|
|
|
exec ssh-agent -D -a "$sockpath"
|