~ubuntu-branches/ubuntu/utopic/binkd/utopic-proposed

« back to all changes in this revision

Viewing changes to debian/postrm

  • Committer: Bazaar Package Importer
  • Author(s): Marco d'Itri
  • Date: 2002-03-24 22:52:25 UTC
  • Revision ID: james.westby@ubuntu.com-20020324225225-emwdv21tqzdb21le
Tags: 0.9.5a-4
Fixed ftrans (Closes: #139055).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh -e
 
2
 
 
3
rm -f /var/run/ftn/binkd.pid
 
4
if [ "$1" = purge ]; then
 
5
  rm -f /var/log/binkd/binkd*
 
6
  rmdir /var/log/binkd 2>/dev/null || true
 
7
fi
 
8
 
 
9
#DEBHELPER#
 
10