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 / vnc-common.prerm < prev    next >
Encoding:
Text File  |  2007-03-08  |  329 b   |  18 lines

  1. #!/bin/sh -e
  2.  
  3. if [ "$1" = "remove" ] ; then
  4.     BIN=/usr/bin
  5.     update-alternatives --remove \
  6.     vncpasswd $BIN/realvncpasswd
  7. fi
  8.  
  9. # Automatically added by dh_installdocs
  10. if [ "$1" = remove ] || [ "$1" = upgrade ] && \
  11.    which install-docs >/dev/null 2>&1; then
  12.     install-docs -r vnc
  13. fi
  14. # End automatically added section
  15.  
  16.  
  17. exit 0
  18.