This file is indexed.

postrm is in stone 2.3.e-2build1.

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 -e
                                                                                
case "$1" in
abort-install | remove | abort-upgrade | upgrade | failed-upgrade | disappear)
        ;;
purge)
        cd /etc/ssl/certs
        PATH=$PATH:/usr/bin/ssl
        rm -f `openssl x509 -noout -hash < stone.pem`.0
        rm -f stone.pem
        ;;
*)
        echo "$0: incorrect arguments: $*" >&2
        exit 1
        ;;
esac