first pass at phabricator role, updating qadevel-stg for phab
This commit is contained in:
parent
7573106e07
commit
a37007fa4c
14 changed files with 2067 additions and 1 deletions
14
roles/phabricator/templates/phabricator-ssh-hook.sh.j2
Normal file
14
roles/phabricator/templates/phabricator-ssh-hook.sh.j2
Normal file
|
@ -0,0 +1,14 @@
|
|||
#!/bin/sh
|
||||
|
||||
# NOTE: Replace this with the username that you expect users to connect with.
|
||||
VCSUSER="{{ phabricator_vcs_user }}"
|
||||
|
||||
# NOTE: Replace this with the path to your Phabricator directory.
|
||||
ROOT="{{ phabroot }}/phabricator"
|
||||
|
||||
if [ "$1" != "$VCSUSER" ];
|
||||
then
|
||||
exit 1
|
||||
fi
|
||||
|
||||
exec "$ROOT/bin/ssh-auth" $@
|
Loading…
Add table
Add a link
Reference in a new issue