Package: zaptel
Version: 1:1.0.4-3
Severity: normal
Tags: patch

Hi!

The postrm tries to remove /dev/zap if it exists. On devfs this fails
horribly and prohibits removing the package.

Please change the test to

if ! test -e /dev/.devfsd ; then
        if test -d /dev/zap/ ; then
                rm -rf /dev/zap/
        fi
fi

The postinst script:

DYNFS=`ps ax | grep -v grep`
[...]
if ! echo $DYNFS | grep devfsd || echo $DYNFS | grep udevd ; then

echoes the contents of $DYNFS to stdout.

please change the "if" to this:

if ! echo $DYNFS | grep -q devfsd || echo $DYNFS | grep -q udevd ; then


Thanks for your time and work!

Regards, David

-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.10-1-k6-1
Locale: LANG=C, LC_CTYPE=de_AT.UTF-8 (charmap=UTF-8)

Versions of packages zaptel depends on:
ii  libc6                       2.3.2.ds1-20 GNU C Library: Shared libraries an
ii  libnewt0.51                 0.51.6-21    Not Erik's Windowing Toolkit - tex

-- no debconf information


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

Reply via email to