#! /bin/sh # postinst script for gitlab # copied from postinst script for hplip # $Id: hplip.postinst,v 1.1 2005/10/15 21:39:04 hmh Exp $ # # see: dh_installdeb(1) set -e # summary of how this script can be called: # * `configure' # * `abort-upgrade' # * `abort-remove' `in-favour' # # * `abort-deconfigure' `in-favour' # `removing' # # for details, see http://www.debian.org/doc/debian-policy/ or # the debian-policy package # # quoting from the policy: # Any necessary prompting should almost always be confined to the # post-installation script, and should be protected with a conditional # so that unnecessary prompting doesn't happen if a package's # installation fails and the `postinst' is called with `abort-upgrade', # `abort-remove' or `abort-deconfigure'. case "$1" in configure) . /etc/gitlab/gitlab-debian.conf . /usr/lib/gitlab/scripts/adduser.sh chown -R ${gitlab_user}: ${gitlab_home} cd ${gitlab_home} # Show debconf questions . /usr/share/debconf/confmodule echo "Create database if not present" if ! su gitlab -s /bin/sh -c "psql gitlab_production -c ''" then su postgres -c 'createdb gitlab_production' fi . /usr/lib/gitlab/scripts/grantpriv.sh echo "Setting up environment varibales..." export RAILS_ENV=production export DB=postgres echo "Verifying we have all required libraries..." su ${gitlab_user} -s /bin/sh -c 'bundle install --local' echo "Running final rake tasks..." # Move these to rails-common #. /usr/lib/diaspora-common/scripts/rake-tasks.sh ;; abort-upgrade|abort-remove|abort-deconfigure) ;; *) echo "postinst called with unknown argument \`$1'" >&2 exit 1 ;; esac #DEBHELPER# exit 0