view .sleep @ 184:580d78e54d7c

Create the ~/.ssh/sockets directory for ControlPath usage later
author Steve Huston <huston@astro.princeton.edu>
date Tue, 03 Mar 2020 15:58:27 -0500
parents 2f9a3b4b6a01
children b00e6b403896
line wrap: on
line source

#!/bin/bash
# first, don't inherit a socket (sleepwatcher doesn't get the user's env)
SSH_AUTH_SOCK=

# find some sockets
for sock in /tmp/com.apple.launchd.*/Listeners /tmp/launch-*/Listeners; do
  if [ -w $sock ]; then
    echo "Trying to remove keys from socket $sock"
    SSH_AUTH_SOCK=$sock ssh-add -D
  fi  
done