blob: c3c1b69419c2e2c2fd192f65e8adc511883261c2 [file] [log] [blame]
#!/bin/bash -e
/tmp/setup_gerrit.py
git config -f /var/gerrit/etc/gerrit.config gerrit.canonicalWebUrl "${CANONICAL_WEB_URL:-http://$HOSTNAME}"
git config -f /var/gerrit/etc/gerrit.config httpd.listenUrl "${HTTPD_LISTEN_URL:-http://*:8080/}"
git config -f /var/gerrit/etc/gerrit.config container.slave "${CONTAINER_SLAVE:-false}"
if [ $CONTAINER_SLAVE ]; then
rm -fr /var/gerrit/plugins/replication.jar
java -jar /var/gerrit/bin/gerrit.war reindex --index groups
else
java -jar /var/gerrit/bin/gerrit.war init --no-auto-start --batch --install-all-plugins -d /var/gerrit
if [ ! -f /var/gerrit/index/gerrit_index.config ]; then
java -jar /var/gerrit/bin/gerrit.war reindex -d /var/gerrit
fi
fi
echo "Running Gerrit ..."
exec /var/gerrit/bin/gerrit.sh run