This file is indexed.

config is in durep 0.9-2.3.

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
#!/bin/sh -e

CONFFILE=/etc/default/durep-rolling
. /usr/share/debconf/confmodule

[ ! -f $CONFFILE ] || . $CONFFILE

if test -n "$HTTPFILEROOT" -a -d "$HTTPFILEROOT" ; then
   db_set durep/httpfileroot "$HTTPFILEROOT"
fi

db_input high durep/httpfileroot || true
db_go || true

db_input low durep/makereports || touch $CONFFILE.no-debconf-changes
db_go

if test -r $CONFFILE && ! test -e $CONFFILE.no-debconf-changes ; then
   # oh, user is doing interactive setup and wants to see the latest list. Maybe.
   . $CONFFILE
   if test -n "$FILESYSTEMS" ; then
      db_set durep/filesystems "$FILESYSTEMS"
   fi
fi
   

db_get durep/makereports || true
if [ "$RET" = true ] ; then
   db_input high durep/filesystems || true
   db_go
fi