1
0
mirror of https://github.com/gophernicus/gophernicus.git synced 2024-08-04 03:34:17 -04:00
gophernicus/debian/gophernicus.config

15 lines
287 B
Plaintext
Raw Normal View History

2014-01-25 04:21:40 -05:00
#!/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"
2014-01-25 04:21:40 -05:00
fi