source: debian/postrm @ fc82be6

Last change on this file since fc82be6 was 19a8088, checked in by Wilmer van der Gaast <wilmer@…>, at 2007-07-05T23:36:48Z

Adding debian/ tree to the repository again. Updated it to include all
1.0.x versions and some other changes. Might soon start building snapshots
again. :-)

  • Property mode set to 100755
File size: 229 bytes
Line 
1#!/bin/sh -e
2
3[ "$1" = "purge" ] || exit 0
4
5if [ -e /usr/share/debconf/confmodule ]; then
6        . /usr/share/debconf/confmodule;
7        db_purge;
8fi
9
10update-rc.d bitlbee remove > /dev/null 2>&1 || true
11deluser --remove-home bitlbee || true
Note: See TracBrowser for help on using the repository browser.