home *** CD-ROM | disk | FTP | other *** search
/ Clickx 115 / Clickx 115.iso / software / tools / windows / tails-i386-0.16.iso / live / filesystem.squashfs / var / lib / dpkg / info / ghostscript.postinst < prev    next >
Encoding:
Text File  |  2012-12-27  |  214 b   |  20 lines

  1. #! /bin/sh
  2.  
  3. set -e
  4.  
  5. case "$1" in
  6.     configure)
  7.     update-gsfontmap
  8.     ;;
  9.     abort-upgrade|abort-remove|abort-deconfigure)
  10.     ;;
  11.     *)
  12.     echo "postinst called with unknown argument \`$1'" >&2
  13.     exit 1
  14.     ;;
  15. esac
  16.  
  17.  
  18.  
  19. exit 0
  20.