~ubuntu-branches/ubuntu/saucy/apache2/saucy

« back to all changes in this revision

Viewing changes to debian/mpms.prerm

  • Committer: Bazaar Package Importer
  • Author(s): Thom May
  • Date: 2004-10-13 19:46:10 UTC
  • Revision ID: james.westby@ubuntu.com-20041013194610-ccvqcz8vflh5zqrm
Tags: 2.0.50-12ubuntu4
Security Release. Patch from upstream for the following:
CAN-2004-0885SSLCypherSuite can be bypassed during renegotiation.

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
        ;;
 
10
        deconfigure|failed-upgrade)
 
11
        ;;
 
12
        *)
 
13
                echo "prerm called with unknown argument \`$1'" >&2
 
14
                exit 1
 
15
        ;;
 
16
esac
 
17
 
 
18
exit 0