mirror of
https://github.com/release-engineering/dist-git.git
synced 2025-02-23 23:12:55 +00:00
18 lines
539 B
Bash
18 lines
539 B
Bash
#!/bin/sh
|
|
|
|
python /usr/local/bin/pkgdb_sync_git_branches.py
|
|
|
|
TEMPDIR=`mktemp -d -p /var/tmp genacls.XXXXX`
|
|
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/
|
|
chown gen-acls:gen-acls -R /etc/gitolite/conf/
|
|
HOME=/srv/git /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
|