1
0
mirror of https://github.com/gophernicus/gophernicus.git synced 2024-06-30 06:45:24 +00:00
gophernicus/debian/gophernicus.config

15 lines
287 B
Bash
Executable File

#!/bin/sh
# Source debconf library
. /usr/share/debconf/confmodule
# Ask for a hostname
db_input high gophernicus/fqdn || true
db_go
# Clear old config on reconfigure
if [ "$1" = "reconfigure" -a -x /usr/sbin/update-inetd ]; then
/usr/sbin/update-inetd --remove "#<off># gopher"
fi