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

« back to all changes in this revision

Viewing changes to debian/apache2-common.postrm

  • 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/bash
2
 
 
3
 
set -e
4
 
 
5
 
if [ "$1" = "purge" ]
6
 
then
7
 
    rm -rf /var/cache/apache2
8
 
    rm -rf /var/lib/apache2
9
 
    rm -rf /var/log/apache2
10
 
    rm -rf /var/lock/apache2
11
 
    rm -rf /var/run/apache2
12
 
    # /etc mess
13
 
    rm -f /etc/default/apache2
14
 
    rm -f /etc/apache2/ports.conf
15
 
    rm -f /etc/apache2/httpd.conf
16
 
    rm -f /etc/apache2/conf.d/charset
17
 
    for i in `find /etc/apache2 -type l`; do
18
 
        rm -f "$i"
19
 
    done
20
 
fi
21
 
 
22
 
#DEBHELPER#