~ubuntu-branches/ubuntu/trusty/ntop/trusty

« back to all changes in this revision

Viewing changes to packages/debian/preinst

  • Committer: Bazaar Package Importer
  • Author(s): Ola Lundqvist
  • Date: 2008-06-15 14:38:28 UTC
  • mfrom: (2.1.11 intrepid)
  • Revision ID: james.westby@ubuntu.com-20080615143828-oalh84nda2hje4do
Tags: 3:3.3-11
Correction of Polish translation encoding, closes: #479490. Thanks
to Christian Perrier <bubulle@debian.org> for the help.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#! /bin/sh
 
2
# preinst script for nbox
 
3
#
 
4
# see: dh_installdeb(1)
 
5
 
 
6
set -e
 
7
 
 
8
# summary of how this script can be called:
 
9
#        * <new-preinst> `install'
 
10
#        * <new-preinst> `install' <old-version>
 
11
#        * <new-preinst> `upgrade' <old-version>
 
12
#        * <old-preinst> `abort-upgrade' <new-version>
 
13
 
 
14
case "$1" in
 
15
    install|upgrade)
 
16
    ;;
 
17
 
 
18
    abort-upgrade)
 
19
    ;;
 
20
 
 
21
    *)
 
22
        echo "preinst called with unknown argument \`$1'" >&2
 
23
        exit 0
 
24
    ;;
 
25
esac
 
26
 
 
27
# dh_installdeb will replace this with shell code automatically
 
28
# generated by other debhelper scripts.
 
29
 
 
30
 
 
31
 
 
32
exit 0