1#!/bin/sh 2 3# NOTE: Replace this with the username that you expect users to connect with. 4VCSUSER="vcs-user" 5 6# NOTE: Replace this with the path to your Phabricator directory. 7ROOT="/path/to/phabricator" 8 9if [ "$1" != "$VCSUSER" ]; 10then 11 exit 1 12fi 13 14exec "$ROOT/bin/ssh-auth" $@ 15 16