~ubuntu-branches/ubuntu/feisty/apache2/feisty

« back to all changes in this revision

Viewing changes to debian/apache2-mpm-prefork.prerm

  • Committer: Bazaar Package Importer
  • Author(s): Andreas Barth
  • Date: 2006-12-09 21:05:45 UTC
  • mfrom: (0.6.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20061209210545-h70s0xaqc2v8vqr2
Tags: 2.2.3-3.2
* Non-maintainer upload.
* 043_ajp_connection_reuse: Patch from upstream Bugzilla, fixing a critical
  issue with regard to connection reuse in mod_proxy_ajp.
  Closes: #396265

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh -e
 
2
 
 
3
# Apache2 prerm
 
4
# Thom May <thom@debian.org>
 
5
 
 
6
case "$1" in
 
7
        upgrade|remove)
 
8
                /usr/sbin/invoke-rc.d apache2 stop
 
9
                sleep 2
 
10
        ;;
 
11
        deconfigure|failed-upgrade)
 
12
        ;;
 
13
        *)
 
14
                echo "prerm called with unknown argument \`$1'" >&2
 
15
                exit 1
 
16
        ;;
 
17
esac
 
18
 
 
19
exit 0