~ubuntu-branches/ubuntu/vivid/whoopsie/vivid-proposed

1
2
3
4
5
6
7
8
9
10
11
12
13
#! /bin/sh

set -e

#DEBHELPER#

if [ "$1" = "purge" ]; then
	deluser --quiet --system whoopsie > /dev/null || true
	chmod g-s /var/crash >/dev/null 2>&1
	chgrp root /var/crash >/dev/null 2>&1
fi

exit 0