X-Git-Url: http://xvm.mit.edu/gitweb/invirt/packages/invirt-dev.git/blobdiff_plain/501e01a2675fc415344a8b2416d3e1adf1938075..bb0684e596383116bfff324bed380444a6c4cc05:/debian/invirt-dev.postinst diff --git a/debian/invirt-dev.postinst b/debian/invirt-dev.postinst old mode 100644 new mode 100755 index cc5164f..9c17d85 --- a/debian/invirt-dev.postinst +++ b/debian/invirt-dev.postinst @@ -5,17 +5,45 @@ set -e case "$1" in configure) - if [ -z "$2" ]; then + 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 - echo "%repo ALL=(repository) ALWAYS_SET_HOME,NOPASSWD: /usr/bin/reprepro" >>/etc/sudoers + 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 </dev/null; then + invoke-rc.d invirtibuilder start + else + /etc/init.d/invirtibuilder start + fi +fi