debian-mirror-gitlab/debian/postinst

103 lines
3.3 KiB
Text
Raw Normal View History

2015-09-12 15:42:12 +05:30
#! /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:
# * <postinst> `configure' <most-recently-configured-version>
# * <old-postinst> `abort-upgrade' <new version>
# * <conflictor's-postinst> `abort-remove' `in-favour' <package>
# <new-version>
# * <deconfigured's-postinst> `abort-deconfigure' `in-favour'
# <failed-install-package> <version> `removing'
# <conflicting-package> <version>
# 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)
2016-01-16 15:43:30 +05:30
# Show debconf questions
. /usr/share/debconf/confmodule
2015-09-12 15:42:12 +05:30
. /etc/gitlab/gitlab-debian.conf
2015-09-24 12:14:52 +05:30
. /usr/lib/gitlab/scripts/adduser.sh
2016-01-16 00:00:03 +05:30
gitlab_repo_path=${gitlab_data_dir}/repositories
mkdir -p ${gitlab_repo_path}
chmod -R ug+rwX,o-rwx ${gitlab_repo_path}/
chmod -R ug-s ${gitlab_repo_path}/
find ${gitlab_repo_path}/ -type d -print0 | sudo xargs -0 chmod g+s
2015-09-12 15:42:12 +05:30
chown -R ${gitlab_user}: ${gitlab_home}
2015-11-03 17:54:13 +05:30
chown -R ${gitlab_user}: ${gitlab_data_dir}
2016-01-15 23:42:03 +05:30
2016-01-23 21:42:31 +05:30
mkdir -p ${gitlab_shell_log}
chown -R ${gitlab_user}: ${gitlab_shell_root}
chown -R ${gitlab_user}: ${gitlab_shell_log}
2016-01-16 00:53:46 +05:30
su ${gitlab_user} -s /bin/sh -c "mkdir -p -m 750 ${gitlab_home}/public/uploads"
2016-01-16 00:25:48 +05:30
su ${gitlab_user} -s /bin/sh -c 'git config --global core.autocrlf "input"'
2015-09-24 12:14:52 +05:30
cd ${gitlab_home}
echo "Create database if not present"
2016-01-16 15:43:30 +05:30
if ! su postgres -s /bin/sh -c "psql gitlab_production -c ''"
then
2016-01-16 15:43:30 +05:30
su postgres -c 'createdb gitlab_production'
fi
2015-10-24 13:21:59 +05:30
2015-11-03 17:44:51 +05:30
# Adjust database privileges
. /usr/lib/gitlab/scripts/grantpriv.sh
2015-09-12 15:42:12 +05:30
echo "Verifying we have all required libraries..."
2015-09-30 21:01:43 +05:30
su ${gitlab_user} -s /bin/sh -c 'bundle install --local'
2015-09-12 15:42:12 +05:30
2015-10-09 20:13:23 +05:30
echo "Running final rake tasks..."
2015-09-12 15:42:12 +05:30
# Move these to rails-common
2015-11-01 20:00:16 +05:30
. /usr/lib/gitlab/scripts/rake-tasks.sh
2016-01-16 15:43:30 +05:30
# Get ssl choice
db_get gitlab/ssl
if [ "${RET}" = "true" ]; then
db_go
# Configure instance address.
db_get gitlab/fqdn
echo "SSL enabled, configuring nginx for ${RET}..."
#/usr/lib/diaspora-common/scripts/set-env-nginx.sh ${RET}
db_go
else
db_go
# Configure instance address.
db_get gitlab/fqdn
echo "SSL disabled, skip nginx configuration for ${RET}..."
#if ! grep SERVERNAME /etc/diaspora.conf
#then
# echo export SERVERNAME=${RET} >> /etc/diaspora.conf
# export SERVERNAME=${RET}
# echo export ENVIRONMENT_URL="http://$SERVERNAME:3000" >> /etc/diaspora.conf
#fi
fi
db_stop
2015-09-12 15:42:12 +05:30
;;
abort-upgrade|abort-remove|abort-deconfigure)
;;
*)
echo "postinst called with unknown argument \`$1'" >&2
exit 1
;;
esac
#DEBHELPER#
exit 0