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 / brltty.prerm < prev    next >
Encoding:
Text File  |  2007-03-27  |  485 b   |  23 lines

  1. #!/bin/sh
  2.  
  3. set -e
  4.  
  5. # Automatically added by dh_installdocs
  6. if [ "$1" = remove ] || [ "$1" = upgrade ] && \
  7.    which install-docs >/dev/null 2>&1; then
  8.     install-docs -r brltty
  9. fi
  10. # End automatically added section
  11. # Automatically added by dh_installinit
  12. if [ -x "/etc/init.d/brltty" ] && [ "$1" = remove ]; then
  13.     if [ -x "`which invoke-rc.d 2>/dev/null`" ]; then
  14.         invoke-rc.d brltty stop || exit $?
  15.     else
  16.         /etc/init.d/brltty stop || exit $?
  17.     fi
  18. fi
  19. # End automatically added section
  20.  
  21.  
  22.  
  23.