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 / fuse-utils.postrm < prev    next >
Encoding:
Text File  |  2007-03-12  |  216 b   |  23 lines

  1. #!/bin/bash -e
  2.  
  3. test $DEBIAN_SCRIPT_DEBUG && set -v -x
  4.  
  5. case $1 in
  6.   purge|remove)
  7.   ;;
  8.  
  9.   failed-upgrade|upgrade)
  10.   ;;
  11.  
  12.   *)
  13.     echo "postrm called with unknown argument \`$1'" >&2
  14.     exit 1
  15.   ;;
  16. esac
  17.  
  18.  
  19.  
  20. exit 0
  21.  
  22.  
  23.