mirror of
https://github.com/frebib/dotfiles.git
synced 2024-06-14 12:57:23 +00:00
Joe Groocock
b519b48e83
These rely on SSH configuring ControlMaster and ControlSocket for the host so the connection can be reused. Signed-off-by: Joe Groocock <me@frebib.net>
14 lines
188 B
Bash
Executable File
14 lines
188 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
if [ -z "$SSH_HOST" ]; then
|
|
>&2 echo 'Missing SSH_HOST variable'
|
|
exit 1
|
|
fi
|
|
|
|
case "$SSH_HOST" in
|
|
*)
|
|
echo 'Unknown SSH host'
|
|
exit 1
|
|
;;
|
|
esac
|