~ubuntu-branches/ubuntu/vivid/air-quality-sensor/vivid

« back to all changes in this revision

Viewing changes to debian/postrm

  • Committer: Package Import Robot
  • Author(s): Benedikt Wildenhain
  • Date: 2014-09-03 22:51:39 UTC
  • Revision ID: package-import@ubuntu.com-20140903225139-zp22cp873heipcib
Tags: 0.1.2-1
Initial release (Closes: #757566)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
 
 
3
set -e
 
4
 
 
5
#DEBHELPER#
 
6
 
 
7
if [ "$1" = "purge" ] ; then
 
8
        delgroup --quiet --system air-quality-sensor > /dev/null || true
 
9
fi
 
10
 
 
11
exit 0