home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2010 May / Mac Life Ubuntu.iso / casper / filesystem.squashfs / var / lib / dpkg / info / cron.prerm < prev    next >
Encoding:
Text File  |  2009-05-12  |  166 b   |  13 lines

  1. #!/bin/sh
  2. set -e
  3.  
  4. if [ -x /etc/init.d/cron ]; then
  5.     if [ -x /usr/sbin/invoke-rc.d ] ; then
  6.            invoke-rc.d cron stop
  7.     else
  8.            /etc/init.d/cron stop
  9.     fi
  10. fi
  11.  
  12.  
  13.