* more changes towards the debian.org packaging.
[citadel.git] / citadel / debian / citadel-server.config
1 #!/bin/sh
2 set -e
3
4 . /usr/share/debconf/confmodule
5 db_version 2.0
6
7 if test -n "$2"; then
8  if test "`echo $2 | sed -e 's/[.-]//g'`" -lt 127 \
9          -o $1 = reconfigure
10  then
11          db_input high citadel/ServerIPAddress
12          db_input high citadel/Administrator
13          db_input high citadel/LoginType
14          db_input high citadel/Installnote
15          db_go
16  fi
17 fi
18 exit 0