This file is indexed.

prerm is in stacks-web 1.35-1ubuntu1.

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

set -e



if [ "$1" = remove -o "$1" = purge ] ; then
    #Lintain complains about this, but I do not know what is actually expected
    #Manpage of a2enconf says that "a2disconf -m" is correct.
#    a2disconf -m stacks-web
    if [ -e /usr/share/apache2/apache2-maintscript-helper ]
    then
        . /usr/share/apache2/apache2-maintscript-helper
        apache2_invoke disconf stacks-web || exit
    fi
fi