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 / libbonobo2-0.postinst < prev    next >
Encoding:
Text File  |  2007-03-12  |  397 b   |  26 lines

  1. #!/bin/sh
  2.  
  3. set -e
  4.  
  5. case "$1" in
  6.     configure)
  7.     kill -s HUP `pidof bonobo-activation-server` 2>/dev/null || true
  8.     ;;
  9.  
  10.     abort-upgrade|abort-remove|abort-deconfigure)
  11.  
  12.     ;;
  13.  
  14.     *)
  15.         echo "postinst called with unknown argument \`$1'" >&2
  16.         exit 1
  17.     ;;
  18. esac
  19.  
  20. # Automatically added by dh_makeshlibs
  21. if [ "$1" = "configure" ]; then
  22.     ldconfig
  23. fi
  24. # End automatically added section
  25.  
  26.