8 if ! getent passwd repository >/dev/null 2>&1; then
9 adduser --system repository
11 if ! getent group repo >/dev/null 2>&1; then
12 addgroup --system repo
15 if ! getent passwd git >/dev/null 2>&1; then
16 adduser --system --home /srv/git --shell /usr/bin/git-shell git
19 if ! [ -d /srv/git ]; then
23 cat >>/etc/sudoers <<EOF
25 %repo ALL=(repository) ALWAYS_SET_HOME,NOPASSWD: /usr/bin/reprepro
30 'git\tstream\ttcp\tnowait\tgit\t/usr/bin/git\tgit daemon --inetd --syslog --verbose --export-all --base-path=/srv/git /srv/git'
33 echo "invirt-dev: run"
34 echo " adduser --disabled-password \$user"
35 echo " adduser \$user repo"
36 echo " adduser \$user sbuild"
37 echo "to make individual users that will build packages."
40 invirt-configure-git-hooks || {
42 echo "invirt-dev: Could not configure git hooks."
43 echo "Run 'invirt-configure-git-hooks' once you"
44 echo "have configured your repositories appropriately."
49 abort-upgrade|abort-remove|abort-deconfigure)
53 echo "postinst called with unknown argument \`$1'" >&2
58 if [ -x /etc/init.d/invirtibuilder ]; then
59 if hash invoke-rc.d 2>/dev/null; then
60 invoke-rc.d invirtibuilder start
62 /etc/init.d/invirtibuilder start