#!/bin/sh # # $Id: cvs_rsh,v 1.6 2005/09/21 05:10:01 jmates Exp $ # # The author disclaims all copyrights and releases this script into # the public domain. # # CVS_RSH environment variable wrapper script that allows arguments to # the target binary. # Require non-interactive authuentication methods to prevent things from # stalling on a password prompt. Also disable agent, X11, other # forwards. exec /usr/bin/ssh -a -x \ -o ClearAllForwardings=yes \ -o PreferredAuthentications=hostbased,publickey,gssapi-with-mic $@