~ubuntu-branches/ubuntu/dapper/php5/dapper-proposed

« back to all changes in this revision

Viewing changes to debian/libapache2-mod-php5.prerm

  • Committer: Bazaar Package Importer
  • Author(s): Adam Conrad
  • Date: 2005-10-09 03:14:32 UTC
  • Revision ID: james.westby@ubuntu.com-20051009031432-5agt5xkcnt5q2kmt
Tags: 5.0.5-2ubuntu1
Resync with Debian, bringing in two security fixes, a file conflict fix,
and two 64-bit memory corruption and segfault fixes (no other changes).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
 
 
3
set -e
 
4
 
 
5
#DEBHELPER#
 
6
 
 
7
if [ "$1" != "remove" -a "$1" != "purge" ]; then
 
8
        exit 0
 
9
fi
 
10
 
 
11
if [ -e /etc/apache2/apache2.conf ]; then
 
12
        a2dismod php5 || true
 
13
fi
 
14
 
 
15
exit 0