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 / mono-gac.prerm < prev    next >
Encoding:
Text File  |  2007-02-27  |  262 b   |  13 lines

  1. #!/bin/sh -e
  2.  
  3. if [ "$1" = remove ]; then
  4.         update-alternatives --remove global-assembly-cache-tool /usr/bin/gacutil
  5.         
  6.         # Remove the GAC
  7.         if [ -x /usr/share/cli-common/gac-remove ]; then
  8.         /usr/share/cli-common/gac-remove mono
  9.     fi
  10. fi
  11.  
  12.  
  13.