/mandos/trunk

To get this branch, use:
bzr branch http://bzr.recompile.se/loggerhead/mandos/trunk

« back to all changes in this revision

Viewing changes to debian/mandos.postrm

  • Committer: Teddy Hogeborn
  • Date: 2016-02-06 14:54:50 UTC
  • Revision ID: teddy@recompile.se-20160206145450-617bg20ezzt8a5mp
On cleanup, Signal ClientRemoved only if using D-Bus.

* mandos (main/cleanup): Bug fix: only send D-Bus signal ClientRemoved
                         if actually using D-Bus.

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
 
        deluser --quiet --system mandos > /dev/null || true
9
 
        delgroup --quiet --system mandos > /dev/null || true
10
 
fi
11