This file is indexed.

postrm is in ubuntukylin-keyring 2014.04.10.

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" = "remove" ] || [ "$1" = "purge" ]; then
    if [ -h /etc/apt/trusted.gpg.d/ubuntukylin-archive-keyring.gpg ]; then
        # our symlink is still there, we need to remove it to clean up
        rm /etc/apt/trusted.gpg.d/ubuntukylin-archive-keyring.gpg
    fi
fi