Bug#692932: dropbear: Allow to disable dropbear in initramfs

2012-11-10 Thread Lars Wilke
Package: dropbear
Version: 2012.55-1
Severity: minor

Hi,

i have disabled networking for the initial ramdisk environment
via setting ip=none on the kernel commandline.

When booting up the ramdisk dropbear complains about not finding
a net-* file and obviously is useless without a running network.

Please allow for a way to not install dropbear to the ramdisk
or let the startup script be a bit smarter.

For example the run script (scripts/pre-mount/dropbear)
says

   for x in $(cat /proc/cmdline); do
case $x in
ip=*)
IPOPTS=${x#ip=}
;;
esac
   done

but it could look like this

   for x in $(cat /proc/cmdline); do
case $x in
ip=none|ip=off)
# Do not start as networking is disabled.
:
;;
ip=*)
IPOPTS=${x#ip=}
;;
esac
   done

Thank you!

   --lars

-- System Information:
Debian Release: wheezy/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: amd64 (x86_64)

Kernel: Linux 3.2.0-4-amd64 (SMP w/8 CPU cores)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages dropbear depends on:
ii  libc6   2.13-35
ii  zlib1g  1:1.2.7.dfsg-13

dropbear recommends no packages.

Versions of packages dropbear suggests:
ii  openssh-client  1:6.0p1-3
pn  runit   none
ii  udev175-7
ii  xauth   1:1.0.7-1

-- no debconf information


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#692932: minor correction

2012-11-10 Thread Lars Wilke
sorry, that should have read

case ...
   ip=none|ip=off)
  # Do not start as networking is disabled.
  exit 0
  ;;
   ...


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#681580: fwknop-client: does not work with fwknop-server 1.9.12-3 in Debian 5.0

2012-07-23 Thread Lars Wilke
Package: fwknop-client
Version: 2.0.0rc2-2
Followup-For: Bug #681580

Hm, your response got me thinking. Thanks btw!

I did some more digging and it turns out shortening
my pre-shared key to at most 16 characters does the
trick and fwknop works again. The original passphrase
was several characters longer.

In the log file /var/log/fwknop/errs/fwknopd.warn
i see this message

   Mon Jul 23 21:46:30 2012 fwknopd v1.9.12 (file rev: 1533) pid: 76537 
Premature end of base64 data at /usr/sbin/fwknopd line 1944

Might be unrelated though.

Could you try this with your setup, too?

Thanks

   --lars

-- System Information:
Debian Release: wheezy/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: amd64 (x86_64)

Kernel: Linux 3.2.0-3-amd64 (SMP w/8 CPU cores)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages fwknop-client depends on:
ii  libc62.13-33
ii  libfko0  2.0.0rc2-2

fwknop-client recommends no packages.

fwknop-client suggests no packages.

-- no debconf information


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#681580: fwknop-client: does not work with fwknop-server 1.9.12-3 in Debian 5.0

2012-07-14 Thread Lars Wilke
Package: fwknop-client
Version: 2.0.0rc2-2
Severity: normal

Hi,

i have an older Debian 5.0.10 system with fwknop-server 1.9.12-3
running. Prior to the upgrade of the fwknop-client everything worked fine.
Now with the new C client in testing the combo of this fwknop server and
client does not work. On the server nothing changed and the client is
called like this:

   fwknop -A tcp/22 --server-port port -D host -s

the packet is generated and the fwknop server sees the package and
reports (when started with --debug)

Fri Jul 13 00:21:14 2012 [-] Digest alg mis-match.
Fri Jul 13 00:21:14 2012 [-] Key mis-match or broken message checksum for 
SOURCE ANY (# 2 in access.conf)
Fri Jul 13 00:21:14 2012 [-] Decrypted message does not conform to a valid SPA 
packet.

Any ideas what could be wrong, especially since upstream claims the new
client is compatible with the perl server.

thanks and kind regards

   --lars

-- System Information:
Debian Release: wheezy/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: amd64 (x86_64)

Kernel: Linux 3.2.0-3-amd64 (SMP w/8 CPU cores)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages fwknop-client depends on:
ii  libc62.13-33
ii  libfko0  2.0.0rc2-2

fwknop-client recommends no packages.

fwknop-client suggests no packages.

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#647272: mailcap deprecated?

2012-01-01 Thread Lars Wilke
* Josselin Mouette wrote:
 Le samedi 31 décembre 2011 à 18:01 +0100, Lars Wilke a écrit :
  your decision impacts mutt, elinks and probably many more
  packages. What should one do about it, file a bug against
  all of these packages?

 Filing bugs doesn’t magically fix them.

 Apparently no one is interested enough to do something about it. If you
 are, you can write, as already suggested several times, a tool to
 generate mailcap entries from desktop files. Or you can fix mutt, elinks
 and others to use the freedesktop.org MIME database to open files.

Hm, if i understand correctly the script would have to do the following:

1.   foreach file in /usr/share/applications/*.desktop
2.  look for MIME relevant entries in $file
3.  find the corrosponding MIME definitions in /usr/share/mime
4.  generate mailcap line

Questions:
- How to handle /usr/share/mime/aliases and /usr/share/mimelnk?
- Also the result would have to be merged with the mailcap file, as i.e. vim
  has no corresponding .desktop file but has a /usr/lib/mime/packages entry.

thanks
   --lars



--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#647272: mailcap deprecated?

2011-12-31 Thread Lars Wilke
Hi,

your decision impacts mutt, elinks and probably many more
packages. What should one do about it, file a bug against
all of these packages?

Happy new year!

   --lars



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#645994: /usr/bin/fwknop: Primary URL for resolving external IP is out of date

2011-10-20 Thread Lars Wilke
Package: fwknop-client
Version: 1.9.12-3
Severity: normal
File: /usr/bin/fwknop

Hi,

if the fwknop-client is told to find the external IP of the client
machine it queries a CGI script ...

% fwknop -A tcp/25 -R --Server-port 6789 -D some remote server --debug
[+] import_perl_modules(): The @INC array:
/etc/perl
/usr/local/lib/perl/5.12.4
/usr/local/share/perl/5.12.4
/usr/lib/perl5
/usr/share/perl5
/usr/lib/perl/5.12
/usr/share/perl/5.12
/usr/local/lib/site_perl
..
[+] Term::ReadKey::VERSION 2.30

[+] ***DEBUG*** Starting fwknop client (SPA mode)...
[+] Resolving hostname: some remote server
Resolving external IP via: 
http://www.whatismyip.com/automation/n09230945.asp
[+] Web server data from: http://www.whatismyip.com/automation/n09230945.asp
HTTP 1.1 404 Not Found  Connection  keep alive  Date  Thu  20 Oct 2011 11 53 57 
GMT  Server  Microsoft IIS 6.0  X Powered By  ASP.NET  Content Length  612  
Content Type  text html  Set Cookie  ASPSESSIONIDCAABCBTB 
DCMNLCGDJDHPELKEFFJPFALH  pathCache control  privateThe automation file 
has moved.  a href  http   www.whatismyip.com faq automation.asp  click here  a 
 brbr   
 br 
   brbr 
   br   
 brbr   
 br 
body   html 
[*] Could not extract external IP from 
http://www.whatismyip.com/automation/n09230945.asp

A workaround is suggested in the manpage using the --URL flag with another CGI.
Alternatively, using -s instead of -R might work, too.

cheers
   --lars

-- System Information:
Debian Release: wheezy/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: amd64 (x86_64)

Kernel: Linux 3.0.0-1-amd64 (SMP w/8 CPU cores)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages fwknop-client depends on:
ii  libcrypt-cbc-perl  2.30-1   
ii  libcrypt-rijndael-perl 1.08-1+b1
ii  libgnupg-interface-perl0.44-1   
ii  libnet-ping-external-perl  0.13-1   
ii  libnet-rawip-perl  0.25-1+b1
ii  libterm-readkey-perl   2.30-4+b1
ii  perl [libdigest-sha-perl]  5.12.4-4 

fwknop-client recommends no packages.

fwknop-client suggests no packages.

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#645200: keepass2: Copy to clipboard not working

2011-10-13 Thread Lars Wilke
Package: keepass2
Version: 2.16+dfsg-1
Severity: important


Hi,

i just migrated from keepassX to keepass2 via exporting my databases as
XML files and then importing them again. This worked flawlessly AFAICT
but if i press ctrl-c or choose copy to clipboard from the menu on any
field nothing happens. I can not copy anything to any other application
like VIM or GNOME Terminal. Pasting via middle button just returns
nothing. But copying i.e. the User Name to the Notes field inside of
keepass2 works.

The same is true for newly created entries.

Thanks
   --lars

-- System Information:
Debian Release: wheezy/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: amd64 (x86_64)

Kernel: Linux 3.0.0-1-amd64 (SMP w/8 CPU cores)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages keepass2 depends on:
ii  libmono-corlib2.0-cil2.6.7-5
ii  libmono-system2.0-cil2.6.7-5
ii  libmono-winforms2.0-cil  2.6.7-5
ii  mono-runtime 2.6.7-5

keepass2 recommends no packages.

Versions of packages keepass2 suggests:
ii  keepass2-doc  none
ii  xdotool   1:2.20100701.2961-3

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#645200: keepass2: Copy to clipboard not working

2011-10-13 Thread Lars Wilke
* Julian Taylor wrote:
 unfortunately I can't reproduce this issue.
 Which desktop environment are you using?

Debian Testing with GNOME.
Metacity it is called i think.

This is a fairly new setup. I installed the laptop about 4 weeks ago.

 Are you using a clipboard manager like clipit?

no

 Does dragdropping passwords and usernames work?

Well, i can dragdrop the entry to the terminal and the name of the
entry gets copied into the terminal.

Hm, i tried libreoffice, here it works when i paste with ctrl-v
No luck with mouse middle button.

 Can you try with clipboard auto clearing disabled (tools - options -
 security, the third checkbox)

No luck, behaviour stays the same, paste to libreoffice works with ctrl-v
but i can not paste into vim/gnome terminal. Oh, i can paste into iceweasel
with ctrl-v, too. Could it be that libreoffice and gnome terminal use
different buffers? Shift+middle button doesn't help either.

thanks
   --lars



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#645200: keepass2: Copy to clipboard not working

2011-10-13 Thread Lars Wilke
* Julian Taylor wrote:
 yes gnome-termina uses a different buffer. ctrl+shift+insert should work.
 other applications (and terminals like xterm, xfce-terminal and konsole)
 do not have this problem.

cool that works :-)
Is there a way to change something somewhere to get this all working like it 
does with
keepassX?

   --lars



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#645200: keepass2: Copy to clipboard not working

2011-10-13 Thread Lars Wilke
* Lars Wilke wrote:
 * Julian Taylor wrote:
  yes gnome-termina uses a different buffer. ctrl+shift+insert should work.
  other applications (and terminals like xterm, xfce-terminal and konsole)
  do not have this problem.
 
 cool that works :-)
 Is there a way to change something somewhere to get this all working like it 
 does with
 keepassX?

i searched a little bit, seems to be a quite messy topic, i.e.
http://code.google.com/p/chromium/issues/detail?id=28231
http://www.pixelbeat.org/docs/xclipboard.html

well anyway, thanks a lot for your help.
Will have to get used to ctrl+shift+insert

cheers
   --lars



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#496993: regex bashism

2008-08-28 Thread Lars Wilke
Package: heartbeat
Version: 2.1.3-6
Severity: important

Hi,

I could not get heartbeat to mount NFS shares via a resource entry in
haresources. After some digging i found out that the shell scripts all
reference /bin/sh in the shebang and use [^...] in some regular expressions.
At least on my system that does not work as i use dash as /bin/sh which only
knows about [!...]. A quick grep found the same problen in the
following files

/usr/lib/ocf/resource.d/heartbeat/WAS6:-e
's%[^0-9][^0-9]*.*$%%'
/usr/lib/ocf/resource.d/heartbeat/IPsrcaddr:*[^0-9.]*) #got invalid char
/usr/lib/ocf/resource.d/heartbeat/Filesystem:[^/]*:/*)  # An NFS filesystem
specification...
/usr/lib/ocf/resource.d/heartbeat/Filesystem://[^/]*/*) # An SMB filesystem
specification...
/usr/lib/ocf/resource.d/heartbeat/IPaddr2:
[0-9a-zA-Z][1379bBdDfF][^0-9a-zA-Z][0-9a-zA-Z][0-9a-zA-Z][^0-9a-zA-Z][0-9a-zA-Z][0-9a-zA-Z][^0-9a-zA-Z][0-9a-zA-Z][0-9a-zA-Z][^0-9a-zA-Z][0-9a-zA-Z][0-9a-zA-Z][^0-9a-zA-Z][0-9a-zA-Z][0-9a-zA-Z])
/usr/lib/ocf/resource.d/heartbeat/o2cb: O2CB_CLUSTER=$(o2cb_ctl -I -t
cluster -o | sed -ne '/^[^#]/{ s/\([^:]*\):.*$/\1/; p }')
/usr/lib/ocf/resource.d/heartbeat/Xinetd:*[^0-9]*) #got invalid char
/usr/lib/ocf/resource.d/heartbeat/Xinetd:   *[^\\ +-]=*)
/usr/lib/ocf/resource.d/heartbeat/Xinetd:   *[^\\ ][+-]=*)
/usr/lib/ocf/resource.d/heartbeat/apache:   /Location ?([^ ]+)/i 
($loc=$1);
/usr/lib/ocf/resource.d/heartbeat/portblock:*[^0-9]*) #got invalid char
/usr/lib/ocf/resource.d/heartbeat/WAS:  -e 's%[^0-9][^0-9]*.*$%%'
/usr/lib/ocf/resource.d/heartbeat/WinPopup:*[^0-9.]*) #got invalid char
/etc/heartbeat/resource.d/WAS:  *[^0-9]*)


Changing for example the regex in /usr/lib/ocf/resource.d/heartbeat/Filesystem
fixed my NFS problem.
So i suggest changing them all to [!...]

regards

   --lars

-- System Information:
Debian Release: lenny/sid
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.18-6-vserver-k7
Locale: LANG=C, [EMAIL PROTECTED] (charmap=ISO-8859-15)

Versions of packages heartbeat depends on:
ii  add 3.102Add and remove users and groups
ii  gaw 1:3.1.5.dfsg-4   GNU awk, a pattern scanning and pr
ii  ipr 20061002-3   Professional tools to control the
ii  ipu 3:20020927-6 Tools to test the reachability of
ii  lib 1.0.3-6  high-quality block-sorting file co
ii  lib 2.7-6GNU C Library: Shared libraries
ii  lib 7.18.1-1 Multi-protocol file transfer libra
ii  lib 2.16.1-2 The GLib library of C routines
ii  lib 2.2.2-1  the GNU TLS library - runtime libr
ii  lib 1.5.22-4 A system independent dlopen wrappe
ii  lib 5.6+20080203-1   Shared libraries for terminal hand
ii  lib 1.1.2.1-2library for the construction and h
ii  lib 2.6.2-3  OpenHPI libraries (runtime and sup
ii  lib 0.79-5   Runtime support for the PAM librar
ii  lib 0.99.7.1-5   Pluggable Authentication Modules l
ii  lib 5.4.1~dfsg-6 SNMP (Simple Network Management Pr
ii  lib 0.9.8g-7 SSL shared libraries
ii  lib 1.39+1.40-WIP-2006.11.14+dfsg-2etch1 universally unique id library
ii  lib 7.6.dbs-13   Wietse Venema's TCP wrappers libra
ii  lib 2.6.31.dfsg-2GNOME XML library
ii  lib 2.6.27.dfsg-4XML utilities
ii  psm 22.3-1   Utilities that use the proc filesy
ii  pyt 2.4.4-2  An interactive high-level object-o
ii  pyt 0.6.7register and build utility for Pyt
ii  zli 1:1.2.3.3.dfsg-11compression library - runtime

Versions of packages heartbeat recommends:
ii  iptables1.3.6.0debian1-5 administration tools for packet fi
ii  logrotate   3.7.1-3  Log rotation utility
ii  syslog-ng [system-log-d 2.0.0-1etch1 Next generation logging daemon

-- no debconf information



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



Bug#490662: crashes on startup

2008-08-14 Thread Lars Wilke
* Jo Shields wrote:
 On Wed, 2008-08-13 at 19:24 +0200, Lars Wilke wrote:
  * Sebastian Dröge wrote:
   does this still happen with 1.2.1-1 in Debian/experimental?
 
  sadly yes.

 Which window manager/desktop environment are you running?

I am using fluxbox. Here the output from the reportbug
utility.

-- System Information:
Debian Release: lenny/sid
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.18-6-vserver-k7
Locale: LANG=C, [EMAIL PROTECTED] (charmap=ISO-8859-15)

Versions of packages banshee depends on:
ii  gstreamer0.10-gnomevfs0.10.10-4  GStreamer plugin for GnomeVFS
ii  gstreamer0.10-plugins-bas 0.10.10-4  GStreamer plugins from the base
ii  gstreamer0.10-plugins-goo 0.10.8-4   GStreamer plugins from the good
ii  hal   0.5.8.1-9etch1 Hardware Abstraction Layer
ii  libboo2.0-cil 0.8.1.2865-2   python-like language and compiler
ii  libc6 2.7-6  GNU C Library: Shared libraries
ii  libcairo2 1.6.4-6The Cairo 2D vector graphics libra
ii  libgconf2.0-cil   2.20.1-1   CLI binding for GConf 2.20
ii  libglade2.0-cil   2.12.1-1   CLI binding for the Glade librarie
ii  libglib2.0-0  2.16.1-2   The GLib library of C routines
ii  libglib2.0-cil2.12.1-1   CLI binding for the GLib utility l
ii  libgnome2.0-cil   2.20.1-1   CLI binding for GNOME 2.20
ii  libgstreamer-plugins-base 0.10.19-2  GStreamer libraries from the base
ii  libgstreamer0.10-00.10.19-3  Core GStreamer libraries and eleme
ii  libgtk2.0-0   2.12.5-2   The GTK+ graphical user interface
ii  libgtk2.0-cil 2.12.1-1   CLI binding for the GTK+ toolkit 2
ii  libmono-addins-gui0.2-cil 0.3.1-5GTK# frontend library for Mono.Add
ii  libmono-addins0.2-cil 0.3.1-5addin framework for extensible CLI
ii  libmono-cairo2.0-cil  1.9.1+dfsg-2   Mono Cairo library
ii  libmono-corlib2.0-cil 1.9.1+dfsg-1   Mono core library (2.0)
ii  libmono-sharpzip2.84-cil  1.2.2.1-1etch1 Mono SharpZipLib library
ii  libmono-sqlite2.0-cil 1.9.1+dfsg-1   Mono Sqlite library
ii  libmono-system-data2.0-ci 1.9.1+dfsg-1   Mono System.Data Library
ii  libmono-system-web2.0-cil 1.9.1+dfsg-1   Mono System.Web Library
ii  libmono-system2.0-cil 1.9.1+dfsg-1   Mono System libraries (2.0)
ii  libmono-zeroconf1.0-cil   0.7.6-1CLI library for multicast DNS serv
ii  libmono2.0-cil1.9.1+dfsg-1   Mono libraries (2.0)
ii  libmtp7   0.2.6-1Media Transfer Protocol (MTP) libr
ii  libndesk-dbus-glib1.0-cil 0.4.1-1CLI implementation of D-Bus (GLib
ii  libndesk-dbus1.0-cil  0.6.0-1CLI implementation of D-Bus
ii  libnotify0.4-cil  0.4.0~r2998-1  CLI library for desktop notificati
ii  libpango1.0-0 1.20.5-1   Layout and rendering of internatio
ii  libtaglib2.0-cil  2.0.3.0-2  CLI library for accessing audio an
ii  libx11-6  2:1.0.3-7  X11 client-side library
ii  libxrandr22:1.2.2-1  X11 RandR extension library
ii  libxxf86vm1   1:1.0.1-2  X11 XFree86 video mode extension l
ii  mono-runtime  1.9.1+dfsg-1   Mono runtime

Versions of packages banshee recommends:
pn  avahi-daemon  none (no description available)
ii  brasero   0.7.1-3+b1 CD/DVD burning application for GNO
ii  gstreamer0.10-ffmpeg  0.10.1-7   FFmpeg plugin for GStreamer
ii  gstreamer0.10-plugins-bad 0.10.3-3.1 various GStreamer plugins
ii  gstreamer0.10-plugins-ugly0.10.4-5   GStreamer plugins from the ugly
ii  podsleuth 0.6.1-1Tool to discover detailed informat

-- no debconf information

thanks

   --lars



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



Bug#490662: crashes on startup

2008-08-13 Thread Lars Wilke
* Sebastian Dröge wrote:
 does this still happen with 1.2.1-1 in Debian/experimental?

sadly yes.

[Info  19:21:41.786] Running Banshee 1.2.0
[Warn  19:21:49.746] Cannot connect to NetworkManager - An available, working ne
twork connection will be assumed
[Error 19:21:49.958] Unknown sort key passed in! Published not recognized
[Warn  19:21:50.107] Caught an exception - No support GNOME Settings Daemon coul
d be reached. (in `Banshee.MultimediaKeys')
  at Banshee.MultimediaKeys.MultimediaKeysService.Banshee.ServiceStack.IExtensio
nService.Initialize () [0x0]
  at Banshee.ServiceStack.ServiceManager.StartExtension (Mono.Addins.TypeExtensi
onNode node) [0x0]
[Warn  19:21:50.108] Extension `Banshee.MultimediaKeys.MultimediaKeysService' no
t started: No support GNOME Settings Daemon could be reached.
[Warn  19:21:51.101] Caught an exception - No support GNOME Settings Daemon coul
d be reached. (in `Banshee.MultimediaKeys')
  at Banshee.MultimediaKeys.MultimediaKeysService.Banshee.ServiceStack.IExtensio
nService.Initialize () [0x0]
  at Banshee.ServiceStack.ServiceManager.StartExtension (Mono.Addins.TypeExtensi
onNode node) [0x0]
[Warn  19:21:51.101] Extension `Banshee.MultimediaKeys.MultimediaKeysService' no
t started: No support GNOME Settings Daemon could be reached.
[Info  19:21:51.104] All services are started 7.220004s
[Warn  19:21:51.970] IScreensaverManager extension failed to load - Could not fi
nd org.gnome.ScreenSaver (in `Banshee.Gnome')
  at Banshee.GnomeBackend.GnomeScreensaverManager..ctor () [0x0]
  at (wrapper managed-to-native) System.Reflection.MonoCMethod:InternalInvoke (o
bject,object[])
  at System.Reflection.MonoCMethod.Invoke (System.Object obj, BindingFlags invok
eAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globa
lization.CultureInfo culture) [0x0]
Exception has been thrown by the target of an invocation. (in `mscorlib')
  at System.Reflection.MonoCMethod.Invoke (System.Object obj, BindingFlags invok
eAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globa
lization.CultureInfo culture) [0x0]
  at System.Reflection.MonoCMethod.Invoke (BindingFlags invokeAttr, System.Refle
ction.Binder binder, System.Object[] parameters, System.Globalization.CultureInf
o culture) [0x0]
  at System.Reflection.ConstructorInfo.Invoke (System.Object[] parameters) [0x00
000]
  at System.Activator.CreateInstance (System.Type type, Boolean nonPublic) [0x00
000]
  at System.Activator.CreateInstance (System.Type type) [0x0]
  at Mono.Addins.TypeExtensionNode.CreateInstance () [0x0]
  at Mono.Addins.InstanceExtensionNode.CreateInstance (System.Type expectedType)
 [0x0]
  at Banshee.NowPlaying.ScreensaverManager..ctor () [0x0]
Exception in Gtk# callback delegate
  Note: Applications can use GLib.ExceptionManager.UnhandledException to handle
the exception.
System.NullReferenceException: Object reference not set to an instance of an obj
ect
  at Banshee.Collection.Gui.ColumnCellStatusIndicator.Render (Hyena.Data.Gui.Cel
lContext context, StateType state, Double cellWidth, Double cellHeight) [0x0
]
  at Hyena.Data.Gui.ListView`1[Banshee.Collection.TrackInfo].PaintCell (System.O
bject item, Int32 column_index, Int32 row_index, Rectangle area, Boolean sensiti
ve, Boolean bold, StateType state, Boolean dragging) [0x0]
  at Hyena.Data.Gui.ListView`1[Banshee.Collection.TrackInfo].PaintRow (Int32 row
_index, Rectangle area, StateType state) [0x0]
  at Hyena.Data.Gui.ListView`1[Banshee.Collection.TrackInfo].PaintRows (Rectangl
e clip) [0x0]
  at Hyena.Data.Gui.ListView`1[Banshee.Collection.TrackInfo].OnExposeEvent (Gdk.
EventExpose evnt) [0x0]
  at Gtk.Widget.exposeevent_cb (IntPtr widget, IntPtr evnt) [0x0]
   at GLib.ExceptionManager.RaiseUnhandledException(System.Exception e, Boolean
is_terminal)
   at Gtk.Widget.exposeevent_cb(IntPtr widget, IntPtr evnt)
   at Gtk.Widget.exposeevent_cb(IntPtr , IntPtr )
   at Gtk.Application.gtk_main()
   at Gtk.Application.gtk_main()
   at Gtk.Application.Run()
   at Banshee.Gui.GtkBaseClient.Run()
   at Banshee.Gui.GtkBaseClient.Startup()
   at Hyena.Gui.CleanRoomStartup.Startup(Hyena.Gui.StartupInvocationHandler star
tup)
   at Banshee.Gui.GtkBaseClient.Entry()
   at Nereid.Client.Main(System.String[] args)



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



Bug#490662: crashes on startup

2008-07-13 Thread Lars Wilke
Package: banshee
Version: 1.0.0-1
Severity: important

Hi,

I cannot even start banshee.
Not sure if there is a library missing or if it just does not work
because i am using fluxbox and not the GNOME Desktop.

[Info  14:45:33.619] Running Banshee 1.0.0
[Warn  14:45:40.495] Cannot connect to NetworkManager - An available, working 
network connection will be assumed
[Info  14:45:42.242] All services are started 7.41726s
Exception in Gtk# callback delegate
  Note: Applications can use GLib.ExceptionManager.UnhandledException to handle 
the exception.
System.NullReferenceException: Object reference not set to an instance of an 
object
  at Banshee.Collection.Gui.ColumnCellStatusIndicator.Render 
(Hyena.Data.Gui.CellContext context, StateType  state, Double cellWidth, 
Double cellHeight) [0x00097] in 
/tmp/buildd/banshee-1.0.0/src/Core/Banshee.ThickClient/ 
Banshee.Collection.Gui/ColumnCellStatusIndicator.cs:142
  at Hyena.Data.Gui.ListView`1[Banshee.Collection.TrackInfo].PaintCell 
(System.Object item, Int32 column_index,  Int32 row_index, Rectangle area, 
Boolean sensitive, StateType state, Boolean dragging) [0x000d3] in /tmp/buildd/ 
banshee-1.0.0/src/Libraries/Hyena.Gui/Hyena.Data.Gui/ListView/ListView_Rendering.cs:331
  at Hyena.Data.Gui.ListView`1[Banshee.Collection.TrackInfo].PaintRow (Int32 
row_index, Rectangle area,  StateType state) [0x000a4] in 
/tmp/buildd/banshee-1.0.0/src/Libraries/Hyena.Gui/Hyena.Data.Gui/ListView/  
   ListView_Rendering.cs:302
  at Hyena.Data.Gui.ListView`1[Banshee.Collection.TrackInfo].PaintRows 
(Rectangle clip) [0x003f1] in 
/tmp/buildd/banshee-1.0.0/src/Libraries/Hyena.Gui/Hyena.Data.Gui/ListView/ListView_Rendering.cs:256
  at Hyena.Data.Gui.ListView`1[Banshee.Collection.TrackInfo].OnExposeEvent 
(Gdk.EventExpose evnt) [0x000d3] in / 
tmp/buildd/banshee-1.0.0/src/Libraries/Hyena.Gui/Hyena.Data.Gui/ListView/ListView_Rendering.cs:88
  at Gtk.Widget.exposeevent_cb (IntPtr widget, IntPtr evnt) [0x0]
   at GLib.ExceptionManager.RaiseUnhandledException(System.Exception e, Boolean 
is_terminal)
   at Gtk.Widget.exposeevent_cb(IntPtr widget, IntPtr evnt)
   at Gtk.Widget.exposeevent_cb(IntPtr , IntPtr )
   at Gtk.Application.gtk_main()
   at Gtk.Application.gtk_main()
   at Gtk.Application.Run()
   at Banshee.Gui.GtkBaseClient.Run() in 
/tmp/buildd/banshee-1.0.0/src/Core/Banshee.ThickClient/Banshee.Gui/ 
GtkBaseClient.cs:line 114
   at Banshee.Gui.GtkBaseClient.Startup() in 
/tmp/buildd/banshee-1.0.0/src/Core/Banshee.ThickClient/Banshee.Gui/ 
GtkBaseClient.cs:line 55
   at Hyena.Gui.CleanRoomStartup.Startup(Hyena.Gui.StartupInvocationHandler 
startup) in /tmp/buildd/banshee-1.0. 
0/src/Libraries/Hyena.Gui/Hyena.Gui/CleanRoomStartup.cs:line 54
   at Banshee.Gui.GtkBaseClient.Entry() in 
/tmp/buildd/banshee-1.0.0/src/Core/Banshee.ThickClient/Banshee.Gui/   
GtkBaseClient.cs:line 50
   at Nereid.Client.Main(System.String[] args) in 
/tmp/buildd/banshee-1.0.0/src/Clients/Nereid/Nereid/Client.cs: line 777


Thanks

   --lars

-- System Information:
Debian Release: lenny/sid
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.18-6-vserver-k7
Locale: LANG=C, [EMAIL PROTECTED] (charmap=ISO-8859-15)

Versions of packages banshee depends on:
ii  gstreamer0.10-gnomevfs0.10.10-4  GStreamer plugin for GnomeVFS
ii  gstreamer0.10-plugins-bas 0.10.10-4  GStreamer plugins from the base
ii  gstreamer0.10-plugins-goo 0.10.8-2   GStreamer plugins from the good
ii  hal   0.5.8.1-9  Hardware Abstraction Layer
ii  libboo2.0-cil 0.8.1.2865-2   python-like language and compiler
ii  libc6 2.7-6  GNU C Library: Shared libraries
ii  libcairo2 1.6.4-1+b1 The Cairo 2D vector graphics libra
ii  libgconf2.0-cil   2.20.1-1   CLI binding for GConf 2.20
ii  libglade2.0-cil   2.12.1-1   CLI binding for the Glade librarie
ii  libglib2.0-0  2.16.1-2   The GLib library of C routines
ii  libglib2.0-cil2.12.1-1   CLI binding for the GLib utility l
ii  libgnome2.0-cil   2.20.1-1   CLI binding for GNOME 2.20
ii  libgstreamer-plugins-base 0.10.19-2  GStreamer libraries from the base
ii  libgstreamer0.10-00.10.19-3  Core GStreamer libraries and eleme
ii  libgtk2.0-0   2.12.5-2   The GTK+ graphical user interface
ii  libgtk2.0-cil 2.12.1-1   CLI binding for the GTK+ toolkit 2
ii  libmono-addins-gui0.2-cil 0.3.1-5GTK# frontend library for Mono.Add
ii  libmono-addins0.2-cil 0.3.1-5addin framework for extensible CLI
ii  libmono-cairo2.0-cil  1.9.1+dfsg-2   Mono Cairo library
ii  libmono-corlib2.0-cil 1.9.1+dfsg-1   Mono core library (2.0)
ii  libmono-sharpzip2.84-cil  1.2.2.1-1etch1 Mono SharpZipLib library
ii  libmono-sqlite2.0-cil 1.9.1+dfsg-1   Mono Sqlite library
ii  libmono-system-data2.0-ci 1.9.1+dfsg-1   Mono System.Data 

Bug#476977: Security fix in new upstream release

2008-04-20 Thread Lars Wilke
Package: egroupware
Version: 1.4.002.dfsg-2.1
Severity: critical
Tags: security

Hi, there is a new upstream release (1.4.004-2) available which fixes
a quite big security hole.

To quote the anouncement

 The fixed security problems are grave, if you have
 directories writable by the webserver in you docroot (in most
 windows server the complete docroot writable by default, but
 many linux servers are also set up that way).


thanks

   --lars

-- System Informato:
Debian Release: lenny/sid
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.18-6-vserver-k7
Locale: LANG=C, [EMAIL PROTECTED] (charmap=ISO-8859-15)



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



Bug#475255: egroupware-projectmanager: SQL Error in projectmanager

2008-04-09 Thread Lars Wilke
Package: egroupware-projectmanager
Version: 1.4.002.dfsg-2.1
Severity: important


Hi, on a fresh install with postgres 8.3.1-1 i get this error when opening the 
projectmanager

Database error: Invalid SQL: SELECT *,role_acl,egw_pm_projects.pm_id AS pm_id 
FROM egw_pm_projects LEFT JOIN
+egw_pm_members ON (egw_pm_projects.pm_id=egw_pm_members.pm_id AND 
member_uid=9) LEFT JOIN egw_pm_roles ON
+egw_pm_members.role_id=egw_pm_roles.role_id LEFT JOIN egw_links ON 
link_app2='projectmanager' AND
+link_app1='projectmanager' AND link_id2=egw_pm_projects.pm_id WHERE 
pm_status='active' AND (pm_access='anonym'
+OR pm_access='public' AND pm_creator IN (9) OR pm_access='private' AND 
pm_creator IN (9) OR
+egw_pm_roles.role_acl!=0) AND link_id2 IS NULL ORDER BY pm_modified DESC
pgsql Error: -1 (ERROR: operator does not exist: character varying = integer at 
character 325 HINT: No operator
+matches the given name and argument type(s). You might need to add explicit 
type casts.)

File: /usr/share/egroupware/etemplate/inc/class.so_sql.inc.php
Line: 730
Function: egw_db::select / so_sql::search / soprojectmanager::search / 
so_sql::get_rows /
+uiprojectmanager::get_rows / nextmatch_widget::pre_process / 
boetemplate::extensionPreProcess /
+etemplate::show_cell / etemplate::show_grid / etemplate::show_cell / 
etemplate::show / etemplate::exec /
+uiprojectmanager::index / ExecMethod(projectmanager.uiprojectmanager.index)

Session halted.

Everything else seems to work fine.

regards

   --lars


-- System Information:
Debian Release: 4.0
  APT prefers stable
  APT policy: (998, 'stable'), (90, 'testing')
Architecture: amd64 (x86_64)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.18-5-xen-vserver-amd64
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages egroupware-projectmanager depends on:
ii  egroupware-core 1.4.002.dfsg-2.1 web-based groupware suite - core m
ii  egroupware-etemplate1.4.002.dfsg-2.1 web-based groupware suite - widget
ii  php5-gd 5.2.0-8+etch10   GD module for php5

egroupware-projectmanager recommends no packages.

-- no debconf information



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



Bug#387441: manpage correction for 'in list'

2006-09-14 Thread Lars Wilke
Package: dash
Version: 0.5.3-3
Severity: wishlist

Hi,

one is allowed to use

- snip -
#!/bin/ash

for arg
do
   echo $arg
done

- snap -

(Under the hood the above expands to for arg in $@ ...)

but the manpage gives the impression
the syntax 'for arg in list' is mandatory IIUC.

It would be nice if the behaviour would be made
more clear like in the manpage for the bash shell.

thanks

   --lars

-- System Information:
Debian Release: testing/unstable
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.16-2-k7
Locale: LANG=C, [EMAIL PROTECTED] (charmap=ISO-8859-15)

Versions of packages dash depends on:
ii  libc62.3.6.ds1-4 GNU C Library: Shared libraries

dash recommends no packages.

-- debconf information:
* dash/sh: true


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



Bug#228064: -g in combo with -R

2006-05-01 Thread Lars Wilke
Package: openssh-client
Version: 1:4.2p1-7
Followup-For: Bug #228064

The problem does not occur if one uses
GatewayPorts yes  (server enforces bind to any interface)
GatewayPorts no  (server enforces bind to loopback device)

If using 'clientspecified' on the server (server does what client says)
and issuing (on the client:)

   ssh -g -R 1234:bla:234 blubb

ssh should bind to all interfaces on blubb, as the docs say.
But it only connects to the loopback device.

But using

   ssh -g -R :1234:bla:234 blubb

works as expected.

When using -L instead of -R this problem does not occur.

regards
   --lars

-- System Information:
Debian Release: testing/unstable
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.15-1-k7
Locale: LANG=C, [EMAIL PROTECTED] (charmap=ISO-8859-15)

Versions of packages openssh-client depends on:
ii  adduser   3.85   Add and remove users and groups
ii  debconf [debc 1.4.72 Debian configuration management sy
ii  dpkg  1.13.18package maintenance system for Deb
ii  libc6 2.3.6-7GNU C Library: Shared libraries
ii  libcomerr21.38+1.39-WIP-2005.12.31-1 common error description library
ii  libedit2  2.9.cvs.20050518-2.2   BSD editline and history libraries
ii  libkrb53  1.4.3-6MIT Kerberos runtime libraries
ii  libncurses5   5.5-1.1Shared libraries for terminal hand
ii  libselinux1   1.30-1 SELinux shared libraries
ii  libssl0.9.8   0.9.8a-8   SSL shared libraries
ii  zlib1g1:1.2.3-11 compression library - runtime

openssh-client recommends no packages.

-- no debconf information


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



Bug#328870: netfilter script - insmod usage

2005-09-17 Thread Lars Wilke
Package: bastille
Version: 1:2.1.1-11
Severity: normal

Hi,

i have the problem, that switching from kernel 2.4.31 to
2.6.11 the bastille-firewall script in /etc/init.d/ prints
an error message like this (line break added by me):

   Loading masquerading modules...insmod: can't read 'ip_nat_ftp': No such
   file or directory 

If i do load the module prior to starting the bastille-firewall, then all
is fine and well (Doing an depmod -a does not help).

Looking in the /sbin/bastille-netfilter script on line 188 i found the
culprit: there is insmod used, though the rest of the script uses modprobe!
If i change the line, substituting insmod through modprobe, seems to solve
the problem.
The error message vanishes and the ip_nat_ftp module gets found and loaded
automatically.

So i wonder if this fix should be included with package or not?


regards

   --lars


-- System Information:
Debian Release: testing/unstable
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.11-1-k7
Locale: LANG=C, [EMAIL PROTECTED] (charmap=ISO-8859-15)

Versions of packages bastille depends on:
ii  libcurses-perl1.12-1 Curses interface for Perl
ii  perl [perl5]  5.8.7-3Larry Wall's Practical Extraction 

Versions of packages bastille recommends:
ii  host  2331-9 utility for querying DNS servers
ii  psad  1.4.2-1The Port Scan Attack Detector
ii  whois 4.7.6  the GNU whois client

-- no debconf information


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



Bug#323684: typo

2005-08-18 Thread Lars Wilke
sorry i mean ordinary ticks *not* backticks, singe quotes.

   --lars


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



Bug#323684: siege.config broken

2005-08-17 Thread Lars Wilke
Package: siege
Version: 2.61-1
Severity: normal

Hi there,

The here document should contains backticks.
The line should read 

   cat  $rcfile '_EOF_'

atm it reads

   cat  $rcfile _EOF_

This gives an error under dash (which is my /bin/sh):

   /usr/bin/siege.config: 24: Syntax error: Bad substitution


regards

   --lars

-- System Information:
Debian Release: testing/unstable
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.4.31
Locale: LANG=C, [EMAIL PROTECTED] (charmap=ISO-8859-15)

Versions of packages siege depends on:
ii  libc6   2.3.2.ds1-22 GNU C Library: Shared libraries an
ii  libssl0.9.7 0.9.7e-3 SSL shared libraries

siege recommends no packages.

-- no debconf information


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



Bug#307069: ssh_config(5) SetupTimeOut

2005-04-30 Thread Lars Wilke
Package: ssh
Version: 1:3.8.1p1-8.sarge.4
Severity: minor

Hi there,

i am not sure if this really is a bug, but the ServerTimeOut option
is not present in the openssh version 3.8p1 nor 3.9p1 or 4.0p1 from
openssh.org. I also could not find any specifics in the documentation
that comes with the package. So if this is a debian specific patch,
it would be nice if the ssh_config(5) man page would say so.

Sorry for bothering you if that is not the case.

Thanks
   --lars


-- System Information:
Debian Release: 3.1
Architecture: i386 (i686)
Kernel: Linux 2.4.30
Locale: LANG=C, [EMAIL PROTECTED] (charmap=ISO-8859-15)

Versions of packages ssh depends on:
ii  adduser 3.63 Add and remove users and groups
ii  debconf 1.4.30.13Debian configuration management sy
ii  dpkg1.10.27  Package maintenance system for Deb
ii  libc6   2.3.2.ds1-21 GNU C Library: Shared libraries an
ii  libpam-modules  0.76-22  Pluggable Authentication Modules f
ii  libpam-runtime  0.76-22  Runtime support for the PAM librar
ii  libpam0g0.76-22  Pluggable Authentication Modules l
ii  libssl0.9.7 0.9.7e-3 SSL shared libraries
ii  libwrap07.6.dbs-8Wietse Venema's TCP wrappers libra
ii  zlib1g  1:1.2.2-3compression library - runtime

-- debconf information excluded


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



Bug#301835: xmule: update to 1.10

2005-03-28 Thread Lars Wilke
Package: xmule
Version: 1.8.4-1
Severity: wishlist


Hi there,

i just wanted to ask you to update to the new 1.10 release of xmule.
I always had problems with the 1.9.xxx series, so i stayed with 1.8.4
until a few days ago. When i grabbed the source for 1.10 from 
sourceforge and i must say that i am very pleased.
I am running it for 6 days now and it seems to be quite stable and is
really fast. It compiled fine on my machine. No problems so far.

So might be time to update..

Thanks for your work.

cheers

   --lars

-- System Information:
Debian Release: 3.1
Architecture: i386 (i686)
Kernel: Linux 2.4.29
Locale: LANG=C, [EMAIL PROTECTED] (charmap=ISO-8859-15)

Versions of packages xmule depends on:
ii  libc62.3.2.ds1-20GNU C Library: Shared libraries an
ii  libgcc1  1:3.4.3-6   GCC support library
ii  libglib1.2   1.2.10-9The GLib library of C routines
ii  libgtk1.21.2.10-17   The GIMP Toolkit set of widgets fo
ii  libstdc++5   1:3.3.5-8   The GNU Standard C++ Library v3
ii  libwxgtk2.4  2.4.2.6 wxWindows Cross-platform C++ GUI t
ii  libx11-6 4.3.0.dfsg.1-10 X Window System protocol client li
ii  libxext6 4.3.0.dfsg.1-10 X Window System miscellaneous exte
ii  libxi6   4.3.0.dfsg.1-10 X Window System Input extension li
ii  wget 1.9.1-8 retrieves files from the web
ii  xlibs4.3.0.dfsg.1-10 X Keyboard Extension (XKB) configu
ii  zlib1g   1:1.2.2-3   compression library - runtime

-- no debconf information


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



Bug#300580: plog: parsing of /var/log/syslog/flawed

2005-03-20 Thread Lars Wilke
Package: ppp
Version: 2.4.2+20040428-6
Severity: minor

Hi,

just wanted to let you know that if i use /var/log/syslog to store
the pppd log messages, plog won't work anymore, due to this line:

   exec tail $@ /var/log/syslog | grep ...

Reason is that tail might not print any relevant lines, imho the
line should read:

   args=-n 20
   test $# -ne 0  args=$@
   exec grep ' \(pppd\|chat\)\[' /var/log/syslog | tail $args

just my ¤ 0,02.

Thank you for your work.

   --lars

-- System Information:
Debian Release: 3.1
Architecture: i386 (i686)
Kernel: Linux 2.4.29
Locale: LANG=C, [EMAIL PROTECTED] (charmap=ISO-8859-1)

Versions of packages ppp depends on:
ii  libc6   2.3.2.ds1-20 GNU C Library: Shared libraries an
ii  libpam-modules  0.76-22  Pluggable Authentication Modules f
ii  libpam-runtime  0.76-22  Runtime support for the PAM librar
ii  libpam0g0.76-22  Pluggable Authentication Modules l
ii  libpcap0.7  0.7.2-7  System interface for user-level pa
ii  libssl0.9.7 0.9.7e-2 SSL shared libraries
ii  makedev 2.3.1-77 creates device files in /dev
ii  netbase 4.20 Basic TCP/IP networking system
ii  procps  1:3.2.1-2The /proc file system utilities

-- debconf information:
  ppp/maxfail: