~ubuntu-branches/debian/jessie/libapache2-mod-python/jessie

« back to all changes in this revision

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

  • Committer: Package Import Robot
  • Author(s): Arthur de Jong
  • Date: 2013-06-28 13:13:39 UTC
  • mfrom: (6.1.3 sid)
  • Revision ID: package-import@ubuntu.com-20130628131339-k0153luvvedddtml
Tags: 3.3.1-11
* Team upload.
* Upload to unstable.

Show diffs side-by-side

added added

removed removed

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