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 / apmd.prerm < prev    next >
Encoding:
Text File  |  2007-03-05  |  391 b   |  21 lines

  1. #!/bin/sh
  2. #
  3. # This is the prerm script for the Debian GNU/Linux apmd package
  4. #
  5. # Written by Dirk Eddelbuettel <edd@debian.org>   
  6.  
  7. set -e
  8.  
  9. # Automatically added by dh_installinit
  10. if [ -x "/etc/init.d/apmd" ]; then
  11.     if [ -x "`which invoke-rc.d 2>/dev/null`" ]; then
  12.         invoke-rc.d apmd stop || exit $?
  13.     else
  14.         /etc/init.d/apmd stop || exit $?
  15.     fi
  16. fi
  17. # End automatically added section
  18.  
  19.  
  20. exit 0
  21.