Package: xserver-xorg-input-wacom
Version: 0.7.4.1-6
Severity: normal
Tags: patch

The package installation fail if the link already exists (if it has
already been installed by the administrator, e.g., or if /etc is managed
by replication across several machines):
# Automatically added by dh_installudev
if [ "$1" = configure -a -z "$2" ]; then
        ln -s ../xserver-xorg-input-wacom.rules 
/etc/udev/rules.d/z60_xserver-xorg-input-wacom.rules
fi
# End automatically added section

dh_installudev should probably be modified to read:

if [ "$1" = configure -a -z "$2" ]; then
        if [ ! -e /etc/udev/rules.d/z60_xserver-xorg-input-wacom.rules ]; then
            ln -s ../xserver-xorg-input-wacom.rules 
/etc/udev/rules.d/z60_xserver-xorg-input-wacom.rules
        fi
fi

or whatever behavior is expected if the link is already in place
(probably nothing, or management by ucf).

-- System Information:
Debian Release: 4.0
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-1-686
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)

-- debconf-show failed


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to