~ubuntu-branches/ubuntu/trusty/linuxlogo/trusty

« back to all changes in this revision

Viewing changes to debian/prerm

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Baumann
  • Date: 2008-06-20 09:19:00 UTC
  • mfrom: (4.1.2 intrepid)
  • Revision ID: james.westby@ubuntu.com-20080620091900-4xzuv7c7ntxvs7wt
Tags: 5.03-4
* Adding patch to fix FTBFS on s390x.
* Updating to standards 3.8.0.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#! /bin/sh
2
 
# prerm script for linuxlogo
3
 
#
4
 
# see: dh_installdeb(1)
5
 
 
6
 
set -e
7
 
case "$1" in
8
 
    remove|upgrade|deconfigure)
9
 
        ;;
10
 
    failed-upgrade)
11
 
        ;;
12
 
    *)
13
 
        echo "prerm called with unknown argument \`$1'" >&2
14
 
        exit 1
15
 
    ;;
16
 
esac
17
 
 
18
 
# dh_installdeb will replace this with shell code automatically
19
 
# generated by other debhelper scripts.
20
 
 
21
 
#DEBHELPER#
22
 
 
23
 
exit 0
24
 
 
25