This file is indexed.

preinst is in asterisk-prompt-de 2.0-1.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
#!/bin/sh

if [ "$1" = "upgrade" -o "$1" = "install" -a "$2" != "" ]; then
  SYMLINK=/usr/share/asterisk/sounds/digits/de
  if [ -e $SYMLINK -a -L $SYMLINK ] ; then
    rm -f $SYMLINK
  fi
fi