This file is indexed.

postrm is in libzeroc-ice3.7 3.7.0-5.

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
# postrm script for libzeroc-ice3.7
set -e

if [ "$1" = "purge" ]; then
    # We remove /var/lib/ice on purge
    rm -rf /var/lib/ice
    
    # Remove /var/lib/ice override
    dpkg-statoverride --remove /var/lib/ice >/dev/null 2>/dev/null || true

fi



exit 0