~ubuntu-branches/ubuntu/raring/octopussy/raring

« back to all changes in this revision

Viewing changes to DEBIAN/prerm

  • Committer: Package Import Robot
  • Author(s): James Page
  • Date: 2012-09-25 10:27:37 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20120925102737-1hgntjl557w3sjqh
Tags: 1.0.6-0ubuntu1
* New upstream release (LP: #1056016).
* d/control: bumped Standards-Version: 3.9.3, no changes.
* d/{copyright,control}: Updated upstream URL.
* d/README.Debian: Fixed minor typo.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/bin/sh -e
2
 
 
3
 
OCTO="octopussy"
4
 
INVOKERCD="/usr/sbin/invoke-rc.d"
5
 
USERDEL="/usr/sbin/userdel"
6
 
GROUPDEL="/usr/sbin/groupdel"
7
 
 
8
 
if [ -x "/etc/init.d/$OCTO" ]; then
9
 
        $INVOKERCD $OCTO stop || exit 0
10
 
fi
11
 
 
12
 
#
13
 
# Remove Octopussy User & Group
14
 
#
15
 
$USERDEL $OCTO || true