This file is indexed.

/usr/share/doc/libxml-sax-perl/examples/libxml-foo-perl.postinst is in libxml-sax-perl 0.99+dfsg-1.

This file is owned by root:root, with mode 0o644.

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
#!/bin/sh
## ----------------------------------------------------------------------
## debian/postinst : postinstallation script for libxml-foo-perl
## ----------------------------------------------------------------------
## This file is provided as an example for packages providing a
## SAX parser. See /usr/share/doc/libxml-sax-perl/README.Debian.gz .
## ----------------------------------------------------------------------

## ----------------------------------------------------------------------
set -e

## ----------------------------------------------------------------------
if [ "$1" = configure ]
then
    if [ -n "$2" ] && dpkg --compare-versions "$2" lt x.x-x
    then
        update-perl-sax-parsers --remove XML::FOO
    fi

    update-perl-sax-parsers --add XML::FOO --priority 60
    update-perl-sax-parsers --update
fi

## ---------------------------------------------------------------------- 
## automatically generated debhelper commands
#DEBHELPER#

exit 0

## ----------------------------------------------------------------------