This file is indexed.

postrm is in xfonts-marumoji 0.2-11.

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
#!/bin/sh
# Debian xfonts-marumoji package post-removal script
# based on xfont-cjk's
# Copyright 1998, 1999 Branden Robinson.  Licensed under the GNU GPL.
# Acknowlegements to Stephen Early, Mark Eichin, and Manoj Srivastava.

set -e

#trap "echo ;\
#      echo 'Received signal.  Aborting removal of xfonts-marumoji package.' ;\
#      echo ;\
#      exit 1" 1 2 3 15

case "$1" in
  remove) ;;
  purge) ;;
  upgrade|failed-upgrade|abort-install|abort-upgrade|disappear) exit 0 ;;
  *) 
    echo "ERROR: xfonts-marumoji postrm called with unknown argument \"$1\"."
    echo "Aborting removal of xfonts-marumoji package."
    exit 1 ;;
esac

# Automatically added by dh_installxfonts
if [ -x "`which update-fonts-dir 2>/dev/null`" ]; then
	update-fonts-dir --x11r7-layout misc;update-fonts-alias --exclude /etc/X11/fonts/misc/xfonts-marumoji.alias misc
fi
# End automatically added section