source: trunk/locker/bin/ssh @ 1178

Last change on this file since 1178 was 793, checked in by geofft, 16 years ago
Replacing sshmic with a script to use the system's ssh, but with our configuration.
File size: 382 bytes
Line 
1#!/bin/bash
2
3# add -r scripts
4if [ -x /bin/athena/attach ]; then
5  eval $(/bin/athena/attach -Padd -b -r scripts)
6fi
7
8exec ssh \
9        -o GSSAPIAuthentication=yes \
10        -o GSSAPIDelegateCredentials=no \
11        -o PreferredAuthentications=gssapi-with-mic \
12        -o ForwardX11=no \
13        -o GlobalKnownHostsFile=/afs/athena.mit.edu/contrib/scripts/ssh/known_hosts \
14        -o UserKnownHostsFile=/dev/null \
15        "$@"
Note: See TracBrowser for help on using the repository browser.