~ubuntu-branches/debian/sid/guake/sid

« back to all changes in this revision

Viewing changes to debian/prerm

  • Committer: Package Import Robot
  • Author(s): Daniel Echeverry
  • Date: 2014-09-05 21:47:17 UTC
  • mfrom: (1.2.1) (22.1.2 experimental)
  • Revision ID: package-import@ubuntu.com-20140905214717-s239dpeg4o9cn0u6
Tags: 0.5.0-1
* New upstream release.
* debian/control
  + Update Vcs-* fields.
* guake.postinst/guake.prerm
  + Register guake as x-terminal-emulator. Closes: #736184
* remove postint and prerm file because are duplicates

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#