* some cleanup and debian code beautification (tab/space/indentation)
[citadel.git] / citadel / debian / citadel-server.config
1 #!/bin/sh
2
3 set -e
4
5 # source debconf stuff
6 . /usr/share/debconf/confmodule
7 db_version 2.0
8
9 if test -n "$2"; then
10     if test "`echo $2 | sed -e 's/[.-]//g'`" -lt 127 \
11         -o $1 = reconfigure
12     then
13         db_input high citadel/ServerIPAddress
14         db_input high citadel/Administrator
15         db_input high citadel/LoginType
16         db_input high citadel/Installnote
17         db_go
18     fi
19 fi
20
21 exit 0