~ubuntu-branches/ubuntu/saucy/mediawiki-extensions/saucy

« back to all changes in this revision

Viewing changes to debian/mediawiki-extensions.postrm

  • Committer: Bazaar Package Importer
  • Author(s): Romain Beauxis
  • Date: 2010-05-04 15:13:35 UTC
  • mfrom: (0.1.1 experimental)
  • Revision ID: james.westby@ubuntu.com-20100504151335-54qeucg3ec108q28
Tags: 2.2
* Added Replaces:/Conflicts: to allow a proper upgrade.
Closes: #580066
* Fixed package descriptions.
Closes: #579667
* Patched mediawiki-extensions-fckeditor to make it work with
  php 5.3. The fix may not be perfect but at least it work.
  Not closing the bug (#579822) for now..

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#! /bin/sh
2
 
# postrm script for mediawiki
3
 
#
4
 
# see: dh_installdeb(1)
5
 
 
6
 
set -e
7
 
 
8
 
if [ -f /usr/share/debconf/confmodule ]; then
9
 
. /usr/share/debconf/confmodule
10
 
fi
11
 
 
12
 
case "$1" in
13
 
    purge)
14
 
        rm -rf /etc/mediawiki-extensions
15
 
    ;;
16
 
    *)
17
 
    ;;
18
 
esac
19
 
 
20
 
 
21
 
#DEBHELPER#
22
 
 
23
 
exit 0
24