fix alignment, use only space, add comments
This commit is contained in:
parent
f470f67925
commit
2ef2ae7d8d
1 changed files with 88 additions and 85 deletions
173
debian/postinst
vendored
173
debian/postinst
vendored
|
@ -27,104 +27,107 @@ set -e
|
|||
|
||||
|
||||
case "$1" in
|
||||
configure)
|
||||
# Show debconf questions
|
||||
. /usr/share/debconf/confmodule
|
||||
configure)
|
||||
# Show debconf questions
|
||||
. /usr/share/debconf/confmodule
|
||||
|
||||
gitlab_debian_conf=/etc/gitlab/gitlab-debian.conf
|
||||
. ${gitlab_debian_conf}
|
||||
# export DB for su command
|
||||
export DB=${DB}
|
||||
. /usr/lib/gitlab/scripts/adduser.sh
|
||||
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 | xargs -0 chmod g+s
|
||||
chown -R ${gitlab_user}: ${gitlab_home}
|
||||
chown -R ${gitlab_user}: ${gitlab_data_dir}
|
||||
# Read debian specific configuration
|
||||
gitlab_debian_conf=/etc/gitlab/gitlab-debian.conf
|
||||
. ${gitlab_debian_conf}
|
||||
|
||||
mkdir -p ${gitlab_shell_log}
|
||||
chown -R ${gitlab_user}: ${gitlab_shell_root}
|
||||
chown -R ${gitlab_user}: ${gitlab_shell_log}
|
||||
su ${gitlab_user} -s /bin/sh -c "mkdir -p -m 750 ${gitlab_home}/public/uploads"
|
||||
su ${gitlab_user} -s /bin/sh -c 'git config --global core.autocrlf "input"'
|
||||
cd ${gitlab_home}
|
||||
db_get gitlab/fqdn
|
||||
if [ "${RET}" != "" ]; then
|
||||
if ! grep GITLAB_HOST ${gitlab_debian_conf}
|
||||
then
|
||||
export GITLAB_HOST=${RET} # We need this to configure nginx below
|
||||
echo GITLAB_HOST=${RET} >> ${gitlab_debian_conf}
|
||||
echo GITLAB_EMAIL_FROM="no-reply@${RET}" >> ${gitlab_debian_conf}
|
||||
echo GITLAB_EMAIL_DISPLAY_NAME="Gitlab" >> ${gitlab_debian_conf}
|
||||
echo GITLAB_EMAIL_REPLY_TO="no-reply@${RET}" >> ${gitlab_debian_conf}
|
||||
fi
|
||||
db_get gitlab/ssl
|
||||
if [ "${RET}" = "true" ]
|
||||
then
|
||||
mkdir -p /etc/gitlab/ssl
|
||||
if [ -f "${nginx_ssl_conf_example_gz}" ]
|
||||
then
|
||||
# undo dh_installdocs auto compress
|
||||
zcat ${nginx_ssl_conf_example_gz} >/tmp/gitlab-ssl
|
||||
export nginx_conf_example="/tmp/gitlab-ssl"
|
||||
fi
|
||||
db_get gitlab/letsencrypt
|
||||
if [ "${RET}" = "true" ]
|
||||
then
|
||||
ln -sf /etc/letsencrypt/live/${GITLAB_HOST}/fullchain.pem \
|
||||
/etc/gitlab/ssl/gitlab.crt
|
||||
ln -sf /etc/letsencrypt/live/${GITLAB_HOST}/privkey.pem \
|
||||
/etc/gitlab/ssl/gitlab.key
|
||||
fi
|
||||
fi
|
||||
# export DB for su command
|
||||
export DB=${DB}
|
||||
|
||||
if test -f ${nginx_conf_example}
|
||||
then
|
||||
sed -e "s/YOUR_SERVER_FQDN/${GITLAB_HOST}/"\
|
||||
${nginx_conf_example} >/etc/nginx/sites-available/${GITLAB_HOST}
|
||||
ln -fs /etc/nginx/sites-available/${RET} /etc/nginx/sites-enabled/
|
||||
rm -f /tmp/gitlab-ssl
|
||||
else
|
||||
echo "nginx.conf.example not found"
|
||||
exit 1
|
||||
fi
|
||||
# Create gitlab user
|
||||
. /usr/lib/gitlab/scripts/adduser.sh
|
||||
|
||||
else
|
||||
echo "Failed to retrieve fully qualified domain name"
|
||||
exit 1
|
||||
fi
|
||||
db_stop
|
||||
|
||||
echo "Create database if not present"
|
||||
if ! su postgres -s /bin/sh -c "psql gitlab_production -c ''"
|
||||
then
|
||||
su postgres -c 'createdb gitlab_production'
|
||||
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 | xargs -0 chmod g+s
|
||||
chown -R ${gitlab_user}: ${gitlab_home}
|
||||
chown -R ${gitlab_user}: ${gitlab_data_dir}
|
||||
|
||||
mkdir -p ${gitlab_shell_log}
|
||||
chown -R ${gitlab_user}: ${gitlab_shell_root}
|
||||
chown -R ${gitlab_user}: ${gitlab_shell_log}
|
||||
su ${gitlab_user} -s /bin/sh -c "mkdir -p -m 750 ${gitlab_home}/public/uploads"
|
||||
su ${gitlab_user} -s /bin/sh -c 'git config --global core.autocrlf "input"'
|
||||
cd ${gitlab_home}
|
||||
|
||||
# Obtain hostname from debconf db
|
||||
db_get gitlab/fqdn
|
||||
if [ "${RET}" != "" ]; then
|
||||
if ! grep GITLAB_HOST ${gitlab_debian_conf}; then
|
||||
export GITLAB_HOST=${RET} # We need this to configure nginx below
|
||||
echo GITLAB_HOST=${RET} >> ${gitlab_debian_conf}
|
||||
echo GITLAB_EMAIL_FROM="no-reply@${RET}" >> ${gitlab_debian_conf}
|
||||
echo GITLAB_EMAIL_DISPLAY_NAME="Gitlab" >> ${gitlab_debian_conf}
|
||||
echo GITLAB_EMAIL_REPLY_TO="no-reply@${RET}" >> ${gitlab_debian_conf}
|
||||
fi
|
||||
|
||||
# Check if ssl option is selected
|
||||
db_get gitlab/ssl
|
||||
if [ "${RET}" = "true" ]; then
|
||||
mkdir -p /etc/gitlab/ssl
|
||||
if [ -f "${nginx_ssl_conf_example_gz}" ]; then
|
||||
# undo dh_installdocs auto compress
|
||||
zcat ${nginx_ssl_conf_example_gz} >/tmp/gitlab-ssl
|
||||
export nginx_conf_example="/tmp/gitlab-ssl"
|
||||
fi
|
||||
|
||||
# Adjust database privileges
|
||||
. /usr/lib/gitlab/scripts/grantpriv.sh
|
||||
# Check if letsencrypt option is selected
|
||||
db_get gitlab/letsencrypt
|
||||
if [ "${RET}" = "true" ]; then
|
||||
ln -sf /etc/letsencrypt/live/${GITLAB_HOST}/fullchain.pem \
|
||||
/etc/gitlab/ssl/gitlab.crt
|
||||
ln -sf /etc/letsencrypt/live/${GITLAB_HOST}/privkey.pem \
|
||||
/etc/gitlab/ssl/gitlab.key
|
||||
fi
|
||||
fi
|
||||
|
||||
# Remove Gemfile.lock if present
|
||||
rm -f ${gtilab_home}/Gemfile.lock
|
||||
if test -f ${nginx_conf_example}; then
|
||||
sed -e "s/YOUR_SERVER_FQDN/${GITLAB_HOST}/"\
|
||||
${nginx_conf_example} >/etc/nginx/sites-available/${GITLAB_HOST}
|
||||
ln -fs /etc/nginx/sites-available/${RET} /etc/nginx/sites-enabled/
|
||||
rm -f /tmp/gitlab-ssl
|
||||
else
|
||||
echo "nginx.conf.example not found"
|
||||
exit 1
|
||||
fi
|
||||
else
|
||||
echo "Failed to retrieve fully qualified domain name"
|
||||
exit 1
|
||||
fi
|
||||
db_stop
|
||||
|
||||
echo "Verifying we have all required libraries..."
|
||||
su ${gitlab_user} -s /bin/sh -c 'bundle install --local'
|
||||
echo "Create database if not present"
|
||||
if ! su postgres -s /bin/sh -c "psql gitlab_production -c ''"; then
|
||||
su postgres -c 'createdb gitlab_production'
|
||||
fi
|
||||
|
||||
# Adjust database privileges
|
||||
. /usr/lib/gitlab/scripts/grantpriv.sh
|
||||
|
||||
# Remove Gemfile.lock if present
|
||||
rm -f ${gtilab_home}/Gemfile.lock
|
||||
|
||||
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/gitlab/scripts/rake-tasks.sh
|
||||
echo "Running final rake tasks..."
|
||||
. /usr/lib/gitlab/scripts/rake-tasks.sh
|
||||
|
||||
|
||||
;;
|
||||
|
||||
abort-upgrade|abort-remove|abort-deconfigure)
|
||||
;;
|
||||
|
||||
*)
|
||||
echo "postinst called with unknown argument \`$1'" >&2
|
||||
exit 1
|
||||
abort-upgrade|abort-remove|abort-deconfigure)
|
||||
;;
|
||||
|
||||
*)
|
||||
echo "postinst called with unknown argument \`$1'" >&2
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
|
||||
|
|
Loading…
Reference in a new issue