~ubuntu-branches/ubuntu/dapper/docbook-dsssl/dapper

« back to all changes in this revision

Viewing changes to debian/postrm

  • Committer: Bazaar Package Importer
  • Author(s): Peter Eisentraut
  • Date: 2005-04-15 22:50:54 UTC
  • mfrom: (2.1.2 hoary)
  • Revision ID: james.westby@ubuntu.com-20050415225054-poffk2fidin1uekn
Tags: 1.79-3
* Changed print/dbrfntry.dsl to produce a single simple-page-sequence as
  root flow object when a refentry element is the root element
  (closes: #298163)
* Use dpatch

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
 
 
3
set -e
 
4
 
 
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
 
13
 
 
14
#DEBHELPER#
 
15
 
 
16
exit 0