author | wenzelm |
Tue, 24 Sep 2019 16:17:37 +0200 | |
changeset 70750 | 07673e7cb5e6 |
permissions | -rwxr-xr-x |
70750 | 1 |
#!/bin/sh |
2 |
||
3 |
# NOTE: Replace this with the username that you expect users to connect with. |
|
4 |
VCSUSER="vcs" |
|
5 |
||
6 |
# NOTE: Replace this with the path to your Phabricator directory. |
|
7 |
ROOT="/var/www/phabricator/phabricator" |
|
8 |
||
9 |
if [ "$1" != "$VCSUSER" ]; |
|
10 |
then |
|
11 |
exit 1 |
|
12 |
fi |
|
13 |
||
14 |
exec "$ROOT/bin/ssh-auth" $@ |