16 lines
463 B
Bash
16 lines
463 B
Bash
#!/bin/sh
|
|
|
|
TEMPDIR=`mktemp -d -p /var/tmp genacls.XXXXX`
|
|
export GL_RC=/etc/gitolite/gitolite.rc
|
|
export GL_BINDIR=/usr/bin
|
|
|
|
cd $TEMPDIR
|
|
# Only replace the acls if genacls completes successfully
|
|
if /usr/local/bin/genacls.pkgdb > gitolite.conf ; then
|
|
mv gitolite.conf /etc/gitolite/conf/
|
|
/usr/bin/gitolite compile
|
|
fi
|
|
cd /
|
|
rm -rf $TEMPDIR
|
|
chown root:packager /etc/gitolite/conf/gitolite.conf-compiled.pm
|
|
chmod g+r /etc/gitolite/conf/gitolite.conf-compiled.pm
|