2015-10-24 13:00:34 +05:30
|
|
|
#!/bin/sh
|
|
|
|
# config maintainer script for gitlab
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
2015-11-01 19:50:55 +05:30
|
|
|
echo "Call debconf to configure gitlab"
|
2015-10-24 13:00:34 +05:30
|
|
|
# source debconf stuffs
|
|
|
|
. /usr/share/debconf/confmodule
|
2016-01-16 15:43:30 +05:30
|
|
|
|
|
|
|
# What is your fqdn?
|
|
|
|
db_input high gitlab/fqdn || true
|
|
|
|
db_go
|
|
|
|
|
|
|
|
# Do you want https?
|
|
|
|
db_input high gitlab/ssl || true
|
|
|
|
db_go
|
|
|
|
|