blob: b8207d9f6f23d328c896076a98148c60fddeef94 (
plain)
1
2
3
4
5
|
#!/bin/sh
# You'll want spawn-fcgi and fcgiwrap to run gitolite as cgi.
install -d --group=gitolite --mode=0755 --owner=gitolite /run/gitolite
umask 0002
exec spawn-fcgi -u gitolite -g gitolite -s /run/gitolite/gitolite.sock -n -d / -- /usr/bin/fcgiwrap -f
|