debian-mirror-gitlab/debian/config
Praveen Arimbrathodiyil 757cee6e00 add debconf option
2016-01-16 15:43:30 +05:30

17 lines
278 B
Bash
Executable file

#!/bin/sh
# config maintainer script for gitlab
set -e
echo "Call debconf to configure gitlab"
# source debconf stuffs
. /usr/share/debconf/confmodule
# What is your fqdn?
db_input high gitlab/fqdn || true
db_go
# Do you want https?
db_input high gitlab/ssl || true
db_go