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

« back to all changes in this revision

Viewing changes to debian/whoopsie.postrm

  • Committer: Package Import Robot
  • Author(s): Evan Dandrea
  • Date: 2012-06-18 09:32:46 UTC
  • Revision ID: package-import@ubuntu.com-20120618093246-djrgv8yn3lfrfocx
Tags: 0.2.1
Provide a libwhoopsie library. This allows the control center panel
via activity-log-manager to provide a 'Show Previous Reports'
button.

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 whoopsie > /dev/null || true
 
9
        chmod g-s /var/crash >/dev/null 2>&1
 
10
        chgrp root /var/crash >/dev/null 2>&1
 
11
fi
 
12
 
 
13
exit 0