This file is indexed.

prerm is in libopenni0 1.5.4.0-8.

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

set -e

MODULE_DIR="/usr/lib/"
MODULES="libnimMockNodes.so.0 libnimCodecs.so.0 libnimRecorder.so.0"

case "$1" in
  remove)
    for module in $MODULES; do
      niReg -u $MODULE_DIR/$module /etc/openni
    done
    ;;
esac



exit 0