home *** CD-ROM | disk | FTP | other *** search
/ PC Welt 2006 November (DVD) / PCWELT_11_2006.ISO / casper / filesystem.squashfs / var / lib / dpkg / info / procps.prerm < prev    next >
Encoding:
Text File  |  2006-08-16  |  410 b   |  24 lines

  1. #!/bin/sh
  2.  
  3. case "$1" in
  4.   remove|deconfigure)
  5.     update-alternatives --remove w /usr/bin/w.procps
  6.     ;;
  7.   upgrade|failed-upgrade)
  8.     ;;
  9. esac
  10.  
  11. # Automatically added by dh_installinit
  12. if [ -x "/etc/init.d/procps.sh" ]; then
  13.     if [ -x "`which invoke-rc.d 2>/dev/null`" ]; then
  14.         invoke-rc.d procps.sh stop || exit $?
  15.     else
  16.         /etc/init.d/procps.sh stop || exit $?
  17.     fi
  18. fi
  19. # End automatically added section
  20.  
  21.  
  22. exit 0
  23.  
  24.