~ubuntu-branches/ubuntu/oneiric/guake/oneiric

« back to all changes in this revision

Viewing changes to debian/prerm

  • Committer: Bazaar Package Importer
  • Author(s): Sylvestre Ledru
  • Date: 2008-08-11 10:43:03 UTC
  • Revision ID: james.westby@ubuntu.com-20080811104303-2nw7g1n1w5jzj38y
Tags: 0.3.1-3
Close the ITP since the release 0.3.1-1 hasn't been published (Closes: #482414) 

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
#set -e
 
3
 
 
4
case "$1" in
 
5
        remove|deconfigure)
 
6
                gconf-schemas --unregister guake.schemas
 
7
                ;;
 
8
        
 
9
 
 
10
       upgrade|purge)
 
11
 
 
12
        ;;
 
13
    *)
 
14
        echo "prerm called with unknown argument \`$1'" >&2
 
15
        exit 1
 
16
esac
 
17
 
 
18
#DEBHELPER#