This file is indexed.

postrm is in sgml-base 1.26+nmu4ubuntu1.

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
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#!/bin/sh
## ----------------------------------------------------------------------
## debian/postrm : postremoval script for sgml-base
## ----------------------------------------------------------------------

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

## ----------------------------------------------------------------------
if [ "$1" = "purge" ]
then

    ## ------------------------------------------------------------------
    ## remove SGML root catalog
    rm -f /etc/sgml/catalog /etc/sgml/catalog.old
    rm -f /var/lib/sgml-base/supercatalog
    rm -f /var/lib/sgml-base/supercatalog.new
    rm -f /var/lib/sgml-base/supercatalog.old

    ## ------------------------------------------------------------------
    ## remove /etc/sgml and /var/lib/sgml-base
    for dir in /etc/sgml /var/lib/sgml-base; do
      if [ -d $dir ]; then
         rmdir --ignore-fail-on-non-empty $dir
      fi
    done

fi

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


exit 0

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