This file is indexed.

config is in atftpd 0.7.git20120829-2.1.

This file is a maintainer script. It is executed when installing (*inst) or removing (*rm) the package.

The actual contents of the file can be viewed below.

 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#!/bin/sh -e

. /usr/share/debconf/confmodule
db_version 2.0

# Do not ask if you need to configure atftp (Bug#266329)

#db_beginblock
#db_input high atftpd/configure || true
#db_endblock
#db_go

#db_get atftpd/configure
#if [ "$RET" = "true" ]; then

    db_beginblock
    db_input medium atftpd/use_inetd || true
    db_endblock
    db_go

    db_get atftpd/use_inetd

    if [ "$RET" = "true" ]; then
	db_beginblock
	db_input low atftpd/tftpd-timeout || true
	db_endblock
	db_go
    fi

    db_beginblock
    db_input low atftpd/port || true
    db_input low atftpd/retry-timeout || true
    db_input low atftpd/maxthread || true
    db_input low atftpd/timeout || true
    db_input low atftpd/tsize || true
    db_input low atftpd/blksize || true
    db_input low atftpd/multicast || true
    db_endblock
    db_go

    db_get atftpd/multicast
    if [ "$RET" = "true" ]; then
	db_beginblock
	db_input low atftpd/mcast_port || true
	db_input medium atftpd/mcast_addr || true
	db_input medium atftpd/ttl || true
	db_endblock
	db_go
    fi

    db_beginblock
    db_input low atftpd/verbosity || true
    db_input medium atftpd/basedir || true
    db_input low atftpd/logtofile || true
    db_endblock
    db_go
    
    db_get  atftpd/logtofile
    if [ "$RET" = "true" ]; then
	db_beginblock
	db_input low atftpd/logfile || true
	db_endblock
	db_go
    fi
#fi