File: config

package info (click to toggle)
ckermit 302-3
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 13,964 kB
  • sloc: ansic: 273,844; makefile: 10,035; sh: 66
file content (27 lines) | stat: -rw-r--r-- 405 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/bin/sh

set -e

. /usr/share/debconf/confmodule

db_input medium ckermit/iksd || true
db_go || true

db_get ckermit/iksd || true

if [ "$RET"     = true ]
then
    db_input medium ckermit/iksd-anon || true
    db_go || true

    db_get ckermit/iksd-anon || true
    if [ "$RET" = true ]
    then
        db_input medium ckermit/iksd-anondir || true
        db_go || true
    fi
fi

#DEBHELPER#

exit 0