This file is indexed.

postinst is in eboard-extras-pack1 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
#!/bin/sh

set -e

# Remove symlink created by previous packages. #359400
if [ "$1" = "configure" ]; then
        if [ -d /usr/doc -a -h /usr/doc/eboard-extras-pack1 -a -d /usr/share/doc/eboard-extras-pack1 ]; then
                rm -f /usr/doc/eboard-extras-pack1
        fi
fi