~ubuntu-branches/ubuntu/hoary/docbook-dsssl/hoary

« back to all changes in this revision

Viewing changes to debian/postrm

  • Committer: Bazaar Package Importer
  • Author(s): Peter Eisentraut
  • Date: 2004-11-06 12:28:09 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20041106122809-jm39fcli9ndotthy
Tags: 1.79-1
* New upstream release
* Removed the debconf and site configuration stuff; use a customization
  layer.
* Removed freebsd.dsl; it's useless without an up-to-date FreeBSD
  source tree.
* Removed basic.dsl; there is better information in the documentation.
* Removed obsolete symlink in /var/www
* Added watch file
* Simplified debian/rules
* Install frames subdirectory normally, not as documentation
* Install only one combined changelog, not one per directory

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 
3
3
set -e
4
4
 
5
 
case "$1" in
6
 
    remove)
7
 
        rm -f /var/www/docbook-dsssl || true
8
 
        ;;
9
 
    abort-install)
10
 
        # Back out of an attempt to install this package.  Undo the effects of
11
 
        # "preinst install...".
12
 
        rm -f /var/www/docbook-dsssl || true
13
 
        ;;
14
 
esac
 
5
if [ "$1" = purge ]; then
 
6
        # legacy
 
7
        rm -r -f /etc/sgml/docbook-dsssl
 
8
        if [ -e /usr/share/debconf/confmodule ]; then
 
9
                . /usr/share/debconf/confmodule
 
10
                db_purge
 
11
        fi
 
12
fi
15
13
 
16
14
#DEBHELPER#
17
15