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

« back to all changes in this revision

Viewing changes to debian/postrm

  • Committer: Andrea Azzarone
  • Date: 2019-03-13 10:05:20 UTC
  • mto: This revision was merged to the branch mainline in revision 956.
  • Revision ID: azzaronea@gmail.com-20190313100520-024zyxvlpm81vgrq
Add livepatch status icons.

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#