This file is indexed.

config is in ocsinventory-agent 2:2.0.5-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
#!/bin/sh

set -e

action=$1
version=$2

# Source debconf library.
. /usr/share/debconf/confmodule
db_version 2.0

db_input high ocsinventory-agent/method || true
db_go

db_get ocsinventory-agent/method || true
if [ "$RET" = "http" ]; then
        db_input high ocsinventory-agent/server || true
fi

db_input medium ocsinventory-agent/tag || true

db_go

db_stop

exit 0