home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2007 September / PCWSEP07.iso / Software / Linux / Linux Mint 3.0 Light / LinuxMint-3.0-Light.iso / casper / filesystem.squashfs / var / lib / dpkg / info / festival.prerm < prev    next >
Encoding:
Text File  |  2006-12-20  |  660 b   |  25 lines

  1. #!/bin/sh
  2.  
  3. set -e
  4.  
  5. # Automatically added by dh_installinfo
  6. if [ "$1" = remove ] || [ "$1" = upgrade ]; then
  7.     install-info --quiet --remove /usr/share/info/festival.info
  8. fi
  9. # End automatically added section
  10. # Automatically added by dh_installinit
  11. if [ -x "/etc/init.d/festival" ]; then
  12.     if [ -x "`which invoke-rc.d 2>/dev/null`" ]; then
  13.         invoke-rc.d festival stop || exit $?
  14.     else
  15.         /etc/init.d/festival stop || exit $?
  16.     fi
  17. fi
  18. # End automatically added section
  19. # Automatically added by dh_installcatalogs
  20. if [ "$1" = "remove" ] || [ "$1" = "upgrade" ]; then
  21.     update-catalog --quiet --remove --super /etc/sgml/festival.cat
  22. fi
  23. # End automatically added section
  24.  
  25.