~ubuntu-core-dev/update-notifier/ubuntu

« back to all changes in this revision

Viewing changes to debian/postrm

  • Committer: mvo
  • Date: 2005-02-03 12:45:41 UTC
  • Revision ID: gustavo@niemeyer.net-20050203124541-66b00f59dd8cee24
* src/rfc822.h: added a comment explaining about the memory use
* src/hooks.c: basic i18n support added, needs more love

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/bin/sh
2
 
 
3
 
STAMP=/var/lib/update-notifier/dpkg-run-stamp
4
 
 
5
 
if [ "$1" = purge -a -f $STAMP ]; then
6
 
        rm $STAMP
7
 
fi
8
 
 
9
 
#DEBHELPER#