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

71 by mvo
* deiban/postinst,postrm,rules: /var/lib/update-notifier/dpkg-run-stamp is no longer part of the package but created/removed in postinst/postrm if needed
1
#!/bin/sh
2
528 by Loïc Minier
"set -e" in debian/preinst, postinst, and postrm.
3
set -e
4
71 by mvo
* deiban/postinst,postrm,rules: /var/lib/update-notifier/dpkg-run-stamp is no longer part of the package but created/removed in postinst/postrm if needed
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#