Package: wicd
Version: 1.6.1-3
Severity: important
When bring up a connection whith a static IP, wicd use ping to test
the success of the connection. The command used is
ping -q -w 3 -c 1 $gateway
but -w 3 is not an option reconize by inetutils-ping, so the test
failed even if the connection is succefull
using
ping -q -c 1 $gateway
is correct
applying this patch solve the problem for me
--- wnettools.py~ 2009-06-21 06:13:49.000000000 +0200
+++ wnettools.py 2009-08-26 12:48:03.000000000 +0200
@@ -677,7 +677,7 @@
trying to ping it.
"""
- cmd = "ping -q -w 3 -c 1 %s" % gateway
+ cmd = "ping -q -c 1 %s" % gateway
if self.verbose: print cmd
return misc.LaunchAndWait(cmd)
-- System Information:
Debian Release: squeeze/sid
APT prefers unstable
APT policy: (700, 'unstable'), (700, 'testing'), (550, 'experimental')
Architecture: amd64 (x86_64)
Kernel: Linux 2.6.30-1-amd64 (SMP w/1 CPU core)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Versions of packages wicd depends on:
ii adduser 3.110 add and remove users and groups
ii debconf [debconf-2.0] 1.5.27 Debian configuration management sy
ii dhcp3-client 3.1.2p1-1 DHCP client
ii iproute 20090324-1 networking and traffic control too
ii lsb-base 3.2-23 Linux Standard Base 3.2 init scrip
ii net-tools 1.60-23 The NET-3 networking toolkit
ii psmisc 22.7-1 utilities that use the proc file s
ii python 2.5.4-2 An interactive high-level object-o
ii python-dbus 0.83.0-1 simple interprocess messaging syst
ii python-glade2 2.14.1-3 GTK+ bindings: Glade support
ii python-gtk2 2.14.1-3 Python bindings for the GTK+ widge
ii python-support 1.0.3 automated rebuilding support for P
ii python-urwid 0.9.8.4-1 curses-based UI/widget library for
ii wireless-tools 29-2 Tools for manipulating Linux Wirel
ii wpasupplicant 0.6.9-3 client support for WPA and WPA2 (I
Versions of packages wicd recommends:
ii gksu 2.0.2-2+b1 graphical frontend to su
ii sudo 1.7.2-1 Provide limited super user privile
Versions of packages wicd suggests:
ii pm-utils 1.2.5-4 utilities and scripts for power ma
-- debconf information:
* wicd/users:
-- debsums errors found:
debsums: checksum mismatch wicd file /usr/share/wicd/wicd/wnettools.py
--
To UNSUBSCRIBE, email to [email protected]
with a subject of "unsubscribe". Trouble? Contact [email protected]