~ubuntu-branches/ubuntu/gutsy/vnc4/gutsy

« back to all changes in this revision

Viewing changes to debian/ex/preinst.ex

  • Committer: Bazaar Package Importer
  • Author(s): Ola Lundqvist
  • Date: 2006-05-15 20:35:17 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20060515203517-l4lre1ku942mn26k
Tags: 4.1.1+X4.3.0-10
* Correction of critical security issue. Thanks to Martin Kogler
  <e9925248@student.tuwien.ac.at> that informed me about the issue,
  and provided the patch.
  This flaw was originally found by Steve Wiseman of intelliadmin.com.
* Applied patch from Javier Kohen <jkohen@users.sourceforge.net> that
  inform the user that only 8 first characters of the password will
  actually be used when typing more than 8 characters, closes:
  #355619.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#! /bin/sh
2
 
# preinst script for vnc4
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
 
# for details, see http://www.debian.org/doc/debian-policy/ or
15
 
# the debian-policy package
16
 
 
17
 
 
18
 
case "$1" in
19
 
    install|upgrade)
20
 
#        if [ "$1" = "upgrade" ]
21
 
#        then
22
 
#            start-stop-daemon --stop --quiet --oknodo  \
23
 
#                --pidfile /var/run/vnc4.pid  \
24
 
#                --exec /usr/sbin/vnc4 2>/dev/null || true
25
 
#        fi
26
 
    ;;
27
 
 
28
 
    abort-upgrade)
29
 
    ;;
30
 
 
31
 
    *)
32
 
        echo "preinst called with unknown argument \`$1'" >&2
33
 
        exit 1
34
 
    ;;
35
 
esac
36
 
 
37
 
# dh_installdeb will replace this with shell code automatically
38
 
# generated by other debhelper scripts.
39
 
 
40
 
#DEBHELPER#
41
 
 
42
 
exit 0
43
 
 
44