17 lines
278 B
Bash
Executable file
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
|
|
|