~ubuntu-branches/ubuntu/quantal/sessioninstaller/quantal-proposed

« back to all changes in this revision

Viewing changes to debian/prerem

  • Committer: Bazaar Package Importer
  • Author(s): Michael Vogt
  • Date: 2010-05-27 10:03:53 UTC
  • Revision ID: james.westby@ubuntu.com-20100527100353-c8l5e46o2umkpcrw
Tags: 0.10+bzr104-0ubuntu1
* new bzr snapshot:
  - support mime-type install
  - support icons/applications

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
# prerm script for sessioninstaller
 
3
 
 
4
set -e
 
5
 
 
6
if [ "$1" = "remove" ] || [ "$1" = "deconfigure" ] ; then
 
7
        update-alternatives --remove gstreamer-codec-install \
 
8
                            /usr/bin/gst-installer || true
 
9
 
 
10
fi
 
11
 
 
12
#DEBHELPER#
 
13
 
 
14
exit 0
 
15