~ubuntu-branches/ubuntu/saucy/resiprocate/saucy-proposed

« back to all changes in this revision

Viewing changes to debian/resiprocate-turn-server.postrm

  • Committer: Package Import Robot
  • Author(s): Daniel Pocock
  • Date: 2012-05-17 19:29:59 UTC
  • Revision ID: package-import@ubuntu.com-20120517192959-ikg8inl2lpg7stjk
Tags: 1.8.2-1
Initial release (Closes: #412427)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
 
 
3
set -e
 
4
 
 
5
if [ "$1" = "purge" ] ; then
 
6
        if getent passwd return >/dev/null; then
 
7
                userdel return
 
8
        fi
 
9
        if getent group return >/dev/null; then
 
10
                groupdel return
 
11
        fi
 
12
fi
 
13
 
 
14
 
 
15
# dh_installdeb will replace this with shell code automatically
 
16
# generated by other debhelper scripts.
 
17
 
 
18
#DEBHELPER#
 
19
 
 
20
exit 0
 
21