#!/bin/sh set -e #DEBHELPER# case "$1" in configure) if ! getent passwd repository >/dev/null 2>&1; then adduser --system repository fi if ! getent group repo >/dev/null 2>&1; then addgroup --system repo fi if ! getent passwd git >/dev/null 2>&1; then adduser --system --home /srv/git --shell /usr/bin/git-shell git fi if ! [ -d /srv/git ]; then mkdir -p /srv/git fi cat >>/etc/sudoers <&2 exit 1 ;; esac if [ -x /etc/init.d/invirtibuilder ]; then if hash invoke-rc.d 2>/dev/null; then invoke-rc.d invirtibuilder start else /etc/init.d/invirtibuilder start fi fi