source: branches/1.1/debian/jobmonarch-jobarchived.prerm @ 980

Last change on this file since 980 was 937, checked in by ramonb, 11 years ago

debian:

  • corrected old init.d script names to new names

CHANGELOG:

  • updated
  • Property svn:executable set to *
File size: 370 bytes
RevLine 
[846]1#!/bin/sh
2
3PATH=/bin:/sbin:/usr/bin:/usr/sbin
4
[869]5set -e
[846]6
[869]7case "$1" in
[896]8    deconfigure)
[937]9        /etc/init.d/jobmonarch-jobarchived stop || true
[896]10        ;;
11    remove)
[869]12        # Only on removal (not during upgrade)
[937]13        /etc/init.d/jobmonarch-jobarchived stop || true
14        update-rc.d -f jobmonarch-jobarchived remove || true
[869]15        ;;
16    *)
17        ;;
18esac
19
[846]20exit 0
Note: See TracBrowser for help on using the repository browser.