~matttbe/ubuntu/quantal/apache2/lp1013171

« back to all changes in this revision

Viewing changes to debian/apache2-mpm-perchild.preinst

  • 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
#Debian preinstall handling for apache2
 
4
# Thom May <thom@debian.org>
 
5
 
 
6
case "$1" in
 
7
        install)
 
8
                rm -f /var/cache/apache2/reload
 
9
                ;;
 
10
        upgrade)
 
11
                if [ -d /var/cache/apache2 ]; then
 
12
                        touch /var/cache/apache2/reload
 
13
                fi
 
14
                ;;
 
15
        *)
 
16
                ;;
 
17
esac