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

« back to all changes in this revision

Viewing changes to debian/postrm

  • Committer: dann frazier
  • Date: 2020-02-04 02:27:07 UTC
  • Revision ID: dannf@ubuntu.com-20200204022707-37vu1ltkpx2m2t5x
tests/test_motd.py: Fix cut & paste error in comment.

Show diffs side-by-side

added added

removed removed

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