Page MenuHomec4science

phabricator-ssh-hook.sh
No OneTemporary

File Metadata

Created
Fri, May 31, 14:17

phabricator-ssh-hook.sh

#!/bin/sh
# NOTE: Replace this with the username that you expect users to connect with.
VCSUSER="vcs-user"
# NOTE: Replace this with the path to your Phabricator directory.
ROOT="/path/to/phabricator"
if [ "$1" != "$VCSUSER" ];
then
exit 1
fi
exec "$ROOT/bin/ssh-auth" $@

Event Timeline